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
1b113f73
Commit
1b113f73
authored
4 years ago
by
Anthony VH
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added extra tests to improve coverage.
parent
c0a8b45b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
4 deletions
+22
-4
test/src/unit-regression2.cpp
test/src/unit-regression2.cpp
+22
-4
No files found.
test/src/unit-regression2.cpp
View file @
1b113f73
...
...
@@ -525,10 +525,18 @@ TEST_CASE("regression tests 2")
{
SECTION
(
"std::array"
)
{
json
j
=
{
7
,
4
};
auto
arr
=
j
.
get
<
std
::
array
<
NonDefaultConstructible
,
2
>>
();
CHECK
(
arr
[
0
].
x
==
7
);
CHECK
(
arr
[
1
].
x
==
4
);
{
json
j
=
{
7
,
4
};
auto
arr
=
j
.
get
<
std
::
array
<
NonDefaultConstructible
,
2
>>
();
CHECK
(
arr
[
0
].
x
==
7
);
CHECK
(
arr
[
1
].
x
==
4
);
}
{
json
j
=
7
;
CHECK_THROWS_AS
((
j
.
get
<
std
::
array
<
NonDefaultConstructible
,
1
>>
()),
json
::
type_error
);
}
}
SECTION
(
"std::pair"
)
...
...
@@ -556,6 +564,11 @@ TEST_CASE("regression tests 2")
CHECK
(
p
.
first
.
x
==
6
);
CHECK
(
p
.
second
==
7
);
}
{
json
j
=
7
;
CHECK_THROWS_AS
((
j
.
get
<
std
::
pair
<
NonDefaultConstructible
,
int
>>
()),
json
::
type_error
);
}
}
SECTION
(
"std::tuple"
)
...
...
@@ -573,6 +586,11 @@ TEST_CASE("regression tests 2")
CHECK
(
std
::
get
<
1
>
(
t
)
==
8
);
CHECK
(
std
::
get
<
2
>
(
t
).
x
==
7
);
}
{
json
j
=
7
;
CHECK_THROWS_AS
((
j
.
get
<
std
::
tuple
<
NonDefaultConstructible
>>
()),
json
::
type_error
);
}
}
}
}
This diff is collapsed.
Click to expand it.
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