Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
c39c36e6
Commit
c39c36e6
authored
Nov 24, 2016
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
💄
fixed indentation
parent
472d0045
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
unit-regression.cpp
test/src/unit-regression.cpp
+15
-15
No files found.
test/src/unit-regression.cpp
View file @
c39c36e6
...
@@ -495,19 +495,19 @@ TEST_CASE("regression tests")
...
@@ -495,19 +495,19 @@ TEST_CASE("regression tests")
json
j
=
json
::
parse
(
"22e2222"
);
json
j
=
json
::
parse
(
"22e2222"
);
CHECK
(
j
==
json
());
CHECK
(
j
==
json
());
}
}
SECTION
(
"issue #367 - calling stream at EOF"
)
SECTION
(
"issue #367 - calling stream at EOF"
)
{
{
std
::
stringstream
ss
;
std
::
stringstream
ss
;
json
j
;
json
j
;
ss
<<
"123"
;
ss
<<
"123"
;
CHECK_NOTHROW
(
j
<<
ss
);
CHECK_NOTHROW
(
j
<<
ss
);
// see https://github.com/nlohmann/json/issues/367#issuecomment-262841893:
// see https://github.com/nlohmann/json/issues/367#issuecomment-262841893:
// ss is not at EOF; this yielded an error before the fix
// ss is not at EOF; this yielded an error before the fix
// (threw basic_string::append). No, it should just throw
// (threw basic_string::append). No, it should just throw
// a parse error because of the EOF.
// a parse error because of the EOF.
CHECK_THROWS_AS
(
j
<<
ss
,
std
::
invalid_argument
);
CHECK_THROWS_AS
(
j
<<
ss
,
std
::
invalid_argument
);
CHECK_THROWS_WITH
(
j
<<
ss
,
"parse error - unexpected end of input"
);
CHECK_THROWS_WITH
(
j
<<
ss
,
"parse error - unexpected end of input"
);
}
}
}
}
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