aboutsummaryrefslogtreecommitdiffstats
path: root/jsonrpc.cpp
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2014-11-01 00:30:04 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2014-11-01 00:30:04 +0800
commit07d08e3af3afb99014cec91d39ce0ca36d710517 (patch)
tree8261c4b9649ea239a408c9283751c394bc6742a6 /jsonrpc.cpp
parentf64c53ac6200eeccaf591a82b0878e24897bf73a (diff)
downloaddexon-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.cpp6
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