add test case for JSON_ASSERT

pull/2242/head
Niels Lohmann 2020-07-06 12:52:48 +02:00
parent 98b1c6d302
commit ba8174041e
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
2 changed files with 51 additions and 0 deletions

View File

@ -95,6 +95,7 @@ set(files
src/unit-algorithms.cpp
src/unit-allocator.cpp
src/unit-alt-string.cpp
src/unit-assert_macro.cpp
src/unit-bson.cpp
src/unit-capacity.cpp
src/unit-cbor.cpp

View File

@ -0,0 +1,50 @@
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 3.8.0
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
SPDX-License-Identifier: MIT
Copyright (c) 2013-2019 Niels Lohmann <http://nlohmann.me>.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "doctest_compatibility.h"
/// global variable to record side effect of assert calls
int assert_counter = 0;
/// set failure variable to true instead of calling assert(x)
#define JSON_ASSERT(x) if (!(x)) ++assert_counter;
#include <nlohmann/json.hpp>
using nlohmann::json;
TEST_CASE("JSON_ASSERT(x)")
{
const json j = {{"bar", 1}};
CHECK(assert_counter == 0);
// accessing non-exising key in const value would assert
j["foo"] == 1;
CHECK(assert_counter == 1);
}