2017-01-28 15:03:35 +00:00
|
|
|
/*
|
|
|
|
__ _____ _____ _____
|
|
|
|
__| | __| | | | JSON for Modern C++ (test suite)
|
|
|
|
| | |__ | | | | | | version 2.1.0
|
|
|
|
|_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
|
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
|
|
|
Copyright (c) 2013-2017 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:
|
2017-01-14 01:20:53 +00:00
|
|
|
|
2017-01-28 15:03:35 +00:00
|
|
|
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 "catch.hpp"
|
2017-01-14 01:20:53 +00:00
|
|
|
#include "json.hpp"
|
|
|
|
|
|
|
|
using nlohmann::json;
|
|
|
|
|
|
|
|
enum test
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pod {};
|
|
|
|
struct pod_bis {};
|
|
|
|
|
2017-01-17 09:32:35 +00:00
|
|
|
void to_json(json&, pod) noexcept;
|
|
|
|
void to_json(json&, pod_bis);
|
2017-01-16 20:59:47 +00:00
|
|
|
void from_json(const json&, pod) noexcept;
|
|
|
|
void from_json(const json&, pod_bis);
|
2017-01-14 01:20:53 +00:00
|
|
|
static json j;
|
|
|
|
|
|
|
|
static_assert(noexcept(json{}), "");
|
|
|
|
static_assert(noexcept(nlohmann::to_json(j, 2)), "");
|
|
|
|
static_assert(noexcept(nlohmann::to_json(j, 2.5)), "");
|
|
|
|
static_assert(noexcept(nlohmann::to_json(j, true)), "");
|
|
|
|
static_assert(noexcept(nlohmann::to_json(j, test{})), "");
|
|
|
|
static_assert(noexcept(nlohmann::to_json(j, pod{})), "");
|
|
|
|
static_assert(not noexcept(nlohmann::to_json(j, pod_bis{})), "");
|
|
|
|
static_assert(noexcept(json(2)), "");
|
|
|
|
static_assert(noexcept(json(test{})), "");
|
|
|
|
static_assert(noexcept(json(pod{})), "");
|
2017-01-16 20:59:47 +00:00
|
|
|
static_assert(noexcept(j.get<pod>()), "");
|
|
|
|
static_assert(not noexcept(j.get<pod_bis>()), "");
|
|
|
|
static_assert(noexcept(json(pod{})), "");
|