Browse Source

undo vmTest

cl-refactor
winsvega 10 years ago
committed by Dimitry
parent
commit
7788d4f6d9
  1. 10
      test/libethereum/blockchain.cpp

10
test/libethereum/blockchain.cpp

@ -813,8 +813,16 @@ BOOST_AUTO_TEST_CASE(userDefinedFile)
BOOST_AUTO_TEST_CASE(rndCode)
{
std::string code;
cerr << "Testing Random Code: ";
std::string code = dev::test::RandomCode::generate(10);
try
{
code = dev::test::RandomCode::generate(10);
}
catch(...)
{
BOOST_ERROR("Exception thrown when generating random code!");
}
cerr << code;
}

Loading…
Cancel
Save