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
7bf007f2
Unverified
Commit
7bf007f2
authored
Dec 16, 2017
by
Niels Lohmann
Committed by
GitHub
Dec 16, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #879 from nlohmann/feature/algorithms
✅
re-added tests for algorithms
parents
980795b6
4c871c58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
test/src/unit-algorithms.cpp
test/src/unit-algorithms.cpp
+0
-4
No files found.
test/src/unit-algorithms.cpp
View file @
7bf007f2
...
...
@@ -256,7 +256,6 @@ TEST_CASE("algorithms")
SECTION
(
"set operations"
)
{
/*
SECTION
(
"std::merge"
)
{
{
...
...
@@ -268,7 +267,6 @@ TEST_CASE("algorithms")
CHECK
(
j3
==
json
({
1
,
2
,
2
,
3
,
4
,
5
,
6
,
7
,
8
}));
}
}
*/
SECTION
(
"std::set_difference"
)
{
...
...
@@ -290,7 +288,6 @@ TEST_CASE("algorithms")
CHECK
(
j3
==
json
({
1
,
2
,
3
,
5
,
7
}));
}
/*
SECTION
(
"std::set_union"
)
{
json
j1
=
{
2
,
4
,
6
,
8
};
...
...
@@ -310,7 +307,6 @@ TEST_CASE("algorithms")
std
::
set_symmetric_difference
(
j1
.
begin
(),
j1
.
end
(),
j2
.
begin
(),
j2
.
end
(),
std
::
back_inserter
(
j3
));
CHECK
(
j3
==
json
({
1
,
3
,
4
,
5
,
6
,
7
,
8
}));
}
*/
}
SECTION
(
"heap operations"
)
...
...
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