diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-11-01 00:30:04 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-11-01 00:30:04 +0800 |
commit | 07d08e3af3afb99014cec91d39ce0ca36d710517 (patch) | |
tree | 8261c4b9649ea239a408c9283751c394bc6742a6 /jsonrpc.cpp | |
parent | f64c53ac6200eeccaf591a82b0878e24897bf73a (diff) | |
download | dexon-solidity-07d08e3af3afb99014cec91d39ce0ca36d710517.tar.gz dexon-solidity-07d08e3af3afb99014cec91d39ce0ca36d710517.tar.zst dexon-solidity-07d08e3af3afb99014cec91d39ce0ca36d710517.zip |
boost_auto_test_suite for jsonrpc && @brief description for WebThreeStubServer
Diffstat (limited to 'jsonrpc.cpp')
-rw-r--r-- | jsonrpc.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/jsonrpc.cpp b/jsonrpc.cpp index cdb90eb7..033339ec 100644 --- a/jsonrpc.cpp +++ b/jsonrpc.cpp @@ -19,7 +19,7 @@ * @date 2014 */ -#if ETH_JSONRPC && 1 +#if ETH_JSONRPC #include <boost/test/unit_test.hpp> #include <boost/lexical_cast.hpp> @@ -36,6 +36,8 @@ #include "TestHelper.h" #include "webthreestubclient.h" +BOOST_AUTO_TEST_SUITE(jsonrpc) + using namespace std; using namespace dev; using namespace dev::eth; @@ -243,4 +245,6 @@ BOOST_AUTO_TEST_CASE(jsonrpc_transact) } +BOOST_AUTO_TEST_SUITE_END() + #endif |