Sha256: 967043ee76f29b3cf8a15f3ec75e30e15866b3ab5da9bb255dddb80bb8fc060a
Contents?: true
Size: 595 Bytes
Versions: 16
Compression:
Stored size: 595 Bytes
Contents
// Copyright (c) 2016-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #include "test.hpp" #include <tao/json/events/from_string.hpp> #include <tao/json/events/to_string.hpp> namespace tao::json { void test( const std::string& v ) { events::to_string consumer; events::from_string( consumer, v ); TEST_ASSERT( consumer.value() == v ); } void unit_test() { test( "[null,true,false,42,43.0,\"foo\",[1,2,3],{\"a\":\"b\",\"c\":\"d\"}]" ); } } // namespace tao::json #include "main.hpp"
Version data entries
16 entries across 16 versions & 1 rubygems