Browse Source

Solidity Tests names are now more consistent

- File names and Boost Test Suite have the same name now for
   every solidity Test, so that there is no need to guess or check
   when you want to run a specific suite from the command line
cl-refactor
Lefteris Karapetsas 10 years ago
parent
commit
8edb5b8b54
  1. 0
      test/SolidityABIJSON.cpp
  2. 0
      test/SolidityCompiler.cpp
  3. 2
      test/SolidityEndToEndTest.cpp
  4. 0
      test/SolidityExpressionCompiler.cpp
  5. 0
      test/SolidityNameAndTypeResolution.cpp
  6. 0
      test/SolidityNatspecJSON.cpp
  7. 2
      test/SolidityOptimizer.cpp
  8. 0
      test/SolidityParser.cpp
  9. 0
      test/SolidityScanner.cpp

0
test/solidityJSONInterfaceTest.cpp → test/SolidityABIJSON.cpp

0
test/solidityCompiler.cpp → test/SolidityCompiler.cpp

2
test/solidityEndToEndTest.cpp → test/SolidityEndToEndTest.cpp

@ -36,7 +36,7 @@ namespace solidity
namespace test
{
BOOST_FIXTURE_TEST_SUITE(SolidityCompilerEndToEndTest, ExecutionFramework)
BOOST_FIXTURE_TEST_SUITE(SolidityEndToEndTest, ExecutionFramework)
BOOST_AUTO_TEST_CASE(smoke_test)
{

0
test/solidityExpressionCompiler.cpp → test/SolidityExpressionCompiler.cpp

0
test/solidityNameAndTypeResolution.cpp → test/SolidityNameAndTypeResolution.cpp

0
test/solidityNatspecJSON.cpp → test/SolidityNatspecJSON.cpp

2
test/solidityOptimizerTest.cpp → test/SolidityOptimizer.cpp

@ -71,7 +71,7 @@ protected:
Address m_nonOptimizedContract;
};
BOOST_FIXTURE_TEST_SUITE(SolidityOptimizerTest, OptimizerTestFramework)
BOOST_FIXTURE_TEST_SUITE(SolidityOptimizer, OptimizerTestFramework)
BOOST_AUTO_TEST_CASE(smoke_test)
{

0
test/solidityParser.cpp → test/SolidityParser.cpp

0
test/solidityScanner.cpp → test/SolidityScanner.cpp

Loading…
Cancel
Save