From 38fcd05c8a0e2d21e20660d88a65ddf0151b8419 Mon Sep 17 00:00:00 2001 From: Srdjan Obucina Date: Fri, 11 Oct 2019 03:03:40 +0200 Subject: [PATCH] Add info message at the beginning and end of the SON CLI tests --- tests/cli/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/cli/main.cpp b/tests/cli/main.cpp index a5b0288e..601a0f17 100644 --- a/tests/cli/main.cpp +++ b/tests/cli/main.cpp @@ -451,6 +451,7 @@ BOOST_FIXTURE_TEST_CASE( cli_vote_for_2_witnesses, cli_fixture ) /////////////////////// BOOST_FIXTURE_TEST_CASE( create_son, cli_fixture ) { + BOOST_TEST_MESSAGE("SON cli wallet tests begin"); try { INVOKE(upgrade_nathan_account); @@ -547,9 +548,11 @@ BOOST_FIXTURE_TEST_CASE( create_son, cli_fixture ) BOOST_CHECK_EQUAL(son2_obj.url, "http://son2"); } catch( fc::exception& e ) { + BOOST_TEST_MESSAGE("SON cli wallet tests exception"); edump((e.to_detail_string())); throw; } + BOOST_TEST_MESSAGE("SON cli wallet tests end"); } ///////////////////////