mirror of
https://github.com/nlohmann/json.git
synced 2026-03-06 09:16:25 +00:00
moved from Catch to doctest for unit tests
This commit is contained in:
@@ -27,7 +27,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "catch.hpp"
|
||||
#include "doctest_compatibility.h"
|
||||
|
||||
#include <nlohmann/json.hpp>
|
||||
using nlohmann::json;
|
||||
@@ -457,7 +457,7 @@ TEST_CASE("RFC 7159 examples")
|
||||
}
|
||||
)";
|
||||
|
||||
CHECK_NOTHROW(json(json_contents));
|
||||
CHECK_NOTHROW(auto tmp = json(json_contents));
|
||||
}
|
||||
|
||||
{
|
||||
@@ -484,7 +484,7 @@ TEST_CASE("RFC 7159 examples")
|
||||
"Country": "US"
|
||||
}
|
||||
])";
|
||||
CHECK_NOTHROW(json(json_contents));
|
||||
CHECK_NOTHROW(auto tmp = json(json_contents));
|
||||
}
|
||||
|
||||
CHECK(json::parse("\"Hello world!\"") == json("Hello world!"));
|
||||
|
||||
Reference in New Issue
Block a user