aboutsummaryrefslogtreecommitdiffstats
path: root/rlp.cpp
diff options
context:
space:
mode:
authorChristoph Jentzsch <jentzsch.software@gmail.com>2014-11-03 23:33:02 +0800
committerChristoph Jentzsch <jentzsch.software@gmail.com>2014-11-03 23:33:02 +0800
commit6eeef2762c0e784bf0c44793376a70430575d34d (patch)
treed8bc55513734f16a88cdc35dc2469c405e509a36 /rlp.cpp
parentbc1aaa78a8fc2954e45e5cea9118f61aec16ad80 (diff)
downloaddexon-solidity-6eeef2762c0e784bf0c44793376a70430575d34d.tar
dexon-solidity-6eeef2762c0e784bf0c44793376a70430575d34d.tar.gz
dexon-solidity-6eeef2762c0e784bf0c44793376a70430575d34d.tar.bz2
dexon-solidity-6eeef2762c0e784bf0c44793376a70430575d34d.tar.lz
dexon-solidity-6eeef2762c0e784bf0c44793376a70430575d34d.tar.xz
dexon-solidity-6eeef2762c0e784bf0c44793376a70430575d34d.tar.zst
dexon-solidity-6eeef2762c0e784bf0c44793376a70430575d34d.zip
Clean up and organize tests + state class tests
Diffstat (limited to 'rlp.cpp')
-rw-r--r--rlp.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/rlp.cpp b/rlp.cpp
index 608a8499..be098d84 100644
--- a/rlp.cpp
+++ b/rlp.cpp
@@ -29,6 +29,7 @@
#include <boost/test/unit_test.hpp>
#include <algorithm>
#include "JsonSpiritHeaders.h"
+#include "TestHelper.h"
using namespace std;
using namespace dev;
@@ -61,16 +62,8 @@ namespace dev
static void getRLPTestCases(js::mValue& v)
{
- const char* ptestPath = getenv("ETHEREUM_TEST_PATH");
- string testPath;
-
- if (ptestPath == NULL)
- {
- cnote << " could not find environment variable ETHEREUM_TEST_PATH \n";
- testPath = "../../../tests";
- }
- else
- testPath = ptestPath;
+ string testPath = getTestPath();
+ testPath += "/BasicTests";
string s = asString(contents(testPath + "/rlptest.json"));
BOOST_REQUIRE_MESSAGE( s.length() > 0,
@@ -144,6 +137,7 @@ namespace dev
}
}
+BOOST_AUTO_TEST_SUITE(BasicTests)
BOOST_AUTO_TEST_CASE(rlp_encoding_test)
{
@@ -202,4 +196,5 @@ BOOST_AUTO_TEST_CASE(rlp_decoding_test)
}
}
+BOOST_AUTO_TEST_SUITE_END()