diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-11-30 23:46:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-30 23:46:20 +0800 |
commit | ac357d12252ceb113a823a400418a59a94521c71 (patch) | |
tree | 1819b51023cc3ed4754fb8253da6ec407a406c0f /test/libsolidity/GasMeter.cpp | |
parent | 6ae6c70cde08f83667b55f09623f9584fbbd41b3 (diff) | |
parent | 53d4433484c33b32d4d1063330633a308c0e48dd (diff) | |
download | dexon-solidity-ac357d12252ceb113a823a400418a59a94521c71.tar.gz dexon-solidity-ac357d12252ceb113a823a400418a59a94521c71.tar.zst dexon-solidity-ac357d12252ceb113a823a400418a59a94521c71.zip |
Merge pull request #1442 from ethereum/lll-testing
LLL: introduce testing framework
Diffstat (limited to 'test/libsolidity/GasMeter.cpp')
-rw-r--r-- | test/libsolidity/GasMeter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/libsolidity/GasMeter.cpp b/test/libsolidity/GasMeter.cpp index bc224284..0671fb15 100644 --- a/test/libsolidity/GasMeter.cpp +++ b/test/libsolidity/GasMeter.cpp @@ -32,6 +32,7 @@ using namespace std; using namespace dev::eth; using namespace dev::solidity; +using namespace dev::test; namespace dev { @@ -40,7 +41,7 @@ namespace solidity namespace test { -class GasMeterTestFramework: public ExecutionFramework +class GasMeterTestFramework: public SolidityExecutionFramework { public: GasMeterTestFramework() { } |