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
5155cc2c
Unverified
Commit
5155cc2c
authored
4 years ago
by
Krylov Yaroslav
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ranged insert test section is added in unit-ordered_json.cpp
parent
d8d8cbf6
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
test/src/unit-ordered_json.cpp
test/src/unit-ordered_json.cpp
+14
-0
No files found.
test/src/unit-ordered_json.cpp
View file @
5155cc2c
...
...
@@ -76,4 +76,18 @@ TEST_CASE("ordered_json")
CHECK
(
multi_ordered
.
dump
()
==
"{
\"
z
\"
:1,
\"
m
\"
:2,
\"
y
\"
:4}"
);
CHECK
(
multi_ordered
.
erase
(
"m"
)
==
1
);
CHECK
(
multi_ordered
.
dump
()
==
"{
\"
z
\"
:1,
\"
y
\"
:4}"
);
// Ranged insert test.
// It seems that values shouldn't be overwritten. Only new values are added
json
j1
{{
"c"
,
1
},
{
"b"
,
2
},
{
"a"
,
3
}};
const
json
j2
{{
"c"
,
77
},
{
"d"
,
42
},
{
"a"
,
4
}};
j1
.
insert
(
j2
.
cbegin
(),
j2
.
cend
()
);
CHECK
(
j1
.
size
()
==
4
);
CHECK
(
j1
.
dump
()
==
"{
\"
a
\"
:3,
\"
b
\"
:2,
\"
c
\"
:1,
\"
d
\"
:42}"
);
ordered_json
oj1
{{
"c"
,
1
},
{
"b"
,
2
},
{
"a"
,
3
}};
const
ordered_json
oj2
{{
"c"
,
77
},
{
"d"
,
42
},
{
"a"
,
4
}};
oj1
.
insert
(
oj2
.
cbegin
(),
oj2
.
cend
()
);
CHECK
(
oj1
.
size
()
==
4
);
CHECK
(
oj1
.
dump
()
==
"{
\"
c
\"
:1,
\"
b
\"
:2,
\"
a
\"
:3,
\"
d
\"
:42}"
);
}
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