diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-03-25 17:59:46 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-03-25 17:59:46 +0800 |
commit | 94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9 (patch) | |
tree | 32eeb393f3bc1603e099cd47b854fa2dc6fe5641 /TestHelper.cpp | |
parent | 0934d0e943765c7c87cf1b3da43aa876f4f1e469 (diff) | |
download | dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.tar.gz dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.tar.zst dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.zip |
ClientBase tests
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r-- | TestHelper.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index b29c5dc3..7dc00149 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -374,22 +374,6 @@ void checkCallCreates(eth::Transactions _resultCallCreates, eth::Transactions _e } } -std::string getTestPath() -{ - string testPath; - const char* ptestPath = getenv("ETHEREUM_TEST_PATH"); - - if (ptestPath == NULL) - { - cnote << " could not find environment variable ETHEREUM_TEST_PATH \n"; - testPath = "../../../tests"; - } - else - testPath = ptestPath; - - return testPath; -} - void userDefinedTest(string testTypeFlag, std::function<void(json_spirit::mValue&, bool)> doTests) { for (int i = 1; i < boost::unit_test::framework::master_test_suite().argc; ++i) |