From 45cec33c78925f4a8014e19335c76925df742b1e Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Tue, 3 May 2011 00:11:07 +0200 Subject: [PATCH] Improved Jansson unit test --- platform/platform_tests/jansson_test.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/platform/platform_tests/jansson_test.cpp b/platform/platform_tests/jansson_test.cpp index 8185f69966..48f5ac4535 100644 --- a/platform/platform_tests/jansson_test.cpp +++ b/platform/platform_tests/jansson_test.cpp @@ -23,4 +23,15 @@ UNIT_TEST(Jansson_Smoke) json_t * acc = json_object_get(location, "accuracy"); TEST(json_is_real(acc), ()); TEST_ALMOST_EQUAL(json_real_value(acc), 18000.0, ()); + + bool wasException = false; + try + { + my::Json invalid("{asd]"); + } + catch (my::Json::Exception const & e) + { + wasException = true; + } + TEST(wasException, ()); }