Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
693bfe43
Commit
693bfe43
authored
Nov 16, 2016
by
Niels
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into feature/emplace
parents
b0f89655
0d72767b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
17 deletions
+35
-17
LICENSE.MIT
LICENSE.MIT
+1
-1
test/src/catch.hpp
test/src/catch.hpp
+34
-16
No files found.
LICENSE.MIT
View file @
693bfe43
The library
is licensed under the MIT License
JSON for Modern C++
is licensed under the MIT License
<http://opensource.org/licenses/MIT>:
Copyright (c) 2013-2016 Niels Lohmann
...
...
test/src/catch.hpp
View file @
693bfe43
/*
* Catch v1.5.
6
* Generated: 2016-
06-09 19:20:41.460328
* Catch v1.5.
8
* Generated: 2016-
10-26 12:07:30.938259
* ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
...
...
@@ -3223,10 +3223,11 @@ namespace Catch {
bool
matches
(
TestCaseInfo
const
&
testCase
)
const
{
// All patterns in a filter must match for the filter to be a match
for
(
std
::
vector
<
Ptr
<
Pattern
>
>::
const_iterator
it
=
m_patterns
.
begin
(),
itEnd
=
m_patterns
.
end
();
it
!=
itEnd
;
++
it
)
for
(
std
::
vector
<
Ptr
<
Pattern
>
>::
const_iterator
it
=
m_patterns
.
begin
(),
itEnd
=
m_patterns
.
end
();
it
!=
itEnd
;
++
it
)
{
if
(
!
(
*
it
)
->
matches
(
testCase
)
)
return
false
;
return
true
;
}
return
true
;
}
};
...
...
@@ -4719,8 +4720,11 @@ namespace Catch {
std
::
string
line
;
while
(
std
::
getline
(
f
,
line
)
)
{
line
=
trim
(
line
);
if
(
!
line
.
empty
()
&&
!
startsWith
(
line
,
"#"
)
)
addTestOrTags
(
config
,
"
\"
"
+
line
+
"
\"
,"
);
if
(
!
line
.
empty
()
&&
!
startsWith
(
line
,
"#"
)
)
{
if
(
!
startsWith
(
line
,
"
\"
"
)
)
line
=
"
\"
"
+
line
+
"
\"
"
;
addTestOrTags
(
config
,
line
+
","
);
}
}
}
...
...
@@ -5368,7 +5372,10 @@ namespace Catch {
++
it
)
{
matchedTests
++
;
TestCaseInfo
const
&
testCaseInfo
=
it
->
getTestCaseInfo
();
Catch
::
cout
()
<<
testCaseInfo
.
name
<<
std
::
endl
;
if
(
startsWith
(
testCaseInfo
.
name
,
"#"
)
)
Catch
::
cout
()
<<
"
\"
"
<<
testCaseInfo
.
name
<<
"
\"
"
<<
std
::
endl
;
else
Catch
::
cout
()
<<
testCaseInfo
.
name
<<
std
::
endl
;
}
return
matchedTests
;
}
...
...
@@ -6454,7 +6461,7 @@ namespace Catch {
namespace
Catch
{
struct
RandomNumberGenerator
{
typedef
in
t
result_type
;
typedef
std
::
ptrdiff_
t
result_type
;
result_type
operator
()(
result_type
n
)
const
{
return
std
::
rand
()
%
n
;
}
...
...
@@ -7571,7 +7578,7 @@ namespace Catch {
return
os
;
}
Version
libraryVersion
(
1
,
5
,
6
,
""
,
0
);
Version
libraryVersion
(
1
,
5
,
8
,
""
,
0
);
}
...
...
@@ -7802,8 +7809,11 @@ namespace Catch {
bool
contains
(
std
::
string
const
&
s
,
std
::
string
const
&
infix
)
{
return
s
.
find
(
infix
)
!=
std
::
string
::
npos
;
}
char
toLowerCh
(
char
c
)
{
return
static_cast
<
char
>
(
::
tolower
(
c
)
);
}
void
toLowerInPlace
(
std
::
string
&
s
)
{
std
::
transform
(
s
.
begin
(),
s
.
end
(),
s
.
begin
(),
::
tolower
);
std
::
transform
(
s
.
begin
(),
s
.
end
(),
s
.
begin
(),
toLowerCh
);
}
std
::
string
toLower
(
std
::
string
const
&
s
)
{
std
::
string
lc
=
s
;
...
...
@@ -8951,9 +8961,10 @@ namespace Catch {
break
;
default:
// Escape control chars - based on contribution by @espenalb in PR #465
// Escape control chars - based on contribution by @espenalb in PR #465 and
// by @mrpi PR #588
if
(
(
c
<
'\x09'
)
||
(
c
>
'\x0D'
&&
c
<
'\x20'
)
||
c
==
'\x7F'
)
os
<<
"&#x"
<<
std
::
uppercase
<<
std
::
hex
<<
st
atic_cast
<
int
>
(
c
)
;
os
<<
"&#x"
<<
std
::
uppercase
<<
std
::
hex
<<
st
d
::
setfill
(
'0'
)
<<
std
::
setw
(
2
)
<<
static_cast
<
int
>
(
c
)
<<
';'
;
else
os
<<
c
;
}
...
...
@@ -9008,13 +9019,20 @@ namespace Catch {
:
m_tagIsOpen
(
false
),
m_needsNewline
(
false
),
m_os
(
&
Catch
::
cout
()
)
{}
{
// We encode control characters, which requires
// XML 1.1
// see http://stackoverflow.com/questions/404107/why-are-control-characters-illegal-in-xml-1-0
*
m_os
<<
"<?xml version=
\"
1.1
\"
encoding=
\"
UTF-8
\"
?>
\n
"
;
}
XmlWriter
(
std
::
ostream
&
os
)
:
m_tagIsOpen
(
false
),
m_needsNewline
(
false
),
m_os
(
&
os
)
{}
{
*
m_os
<<
"<?xml version=
\"
1.1
\"
encoding=
\"
UTF-8
\"
?>
\n
"
;
}
~
XmlWriter
()
{
while
(
!
m_tags
.
empty
()
)
...
...
@@ -9181,7 +9199,7 @@ namespace Catch {
virtual
void
testCaseStarting
(
TestCaseInfo
const
&
testInfo
)
CATCH_OVERRIDE
{
StreamingReporterBase
::
testCaseStarting
(
testInfo
);
m_xml
.
startElement
(
"TestCase"
).
writeAttribute
(
"name"
,
t
rim
(
testInfo
.
name
)
);
m_xml
.
startElement
(
"TestCase"
).
writeAttribute
(
"name"
,
t
estInfo
.
name
);
if
(
m_config
->
showDurations
()
==
ShowDurations
::
Always
)
m_testCaseTimer
.
start
();
...
...
@@ -9243,7 +9261,7 @@ namespace Catch {
.
writeText
(
assertionResult
.
getMessage
()
);
break
;
case
ResultWas
:
:
FatalErrorCondition
:
m_xml
.
scopedElement
(
"Fatal
Error
Condition"
)
m_xml
.
scopedElement
(
"Fatal
Error
Condition"
)
.
writeAttribute
(
"filename"
,
assertionResult
.
getSourceInfo
().
file
)
.
writeAttribute
(
"line"
,
assertionResult
.
getSourceInfo
().
line
)
.
writeText
(
assertionResult
.
getMessage
()
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment