diff options
author | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-03-05 23:49:21 +0800 |
---|---|---|
committer | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-03-05 23:49:21 +0800 |
commit | 51e376efb8dc2f410872c682e4bf36955ec7caca (patch) | |
tree | a8bf8cf138f206f8d37dcc1429b0e4e65ab0e126 /TestHelper.h | |
parent | 326bf6c7712b8b199225d08667ea6295f9653e7b (diff) | |
parent | 0c2a7fbe7d2283a2226cf693d94a087ddca56b04 (diff) | |
download | dexon-solidity-51e376efb8dc2f410872c682e4bf36955ec7caca.tar dexon-solidity-51e376efb8dc2f410872c682e4bf36955ec7caca.tar.gz dexon-solidity-51e376efb8dc2f410872c682e4bf36955ec7caca.tar.bz2 dexon-solidity-51e376efb8dc2f410872c682e4bf36955ec7caca.tar.lz dexon-solidity-51e376efb8dc2f410872c682e4bf36955ec7caca.tar.xz dexon-solidity-51e376efb8dc2f410872c682e4bf36955ec7caca.tar.zst dexon-solidity-51e376efb8dc2f410872c682e4bf36955ec7caca.zip |
Merge remote-tracking branch 'upstream/develop' into evmjit
Diffstat (limited to 'TestHelper.h')
-rw-r--r-- | TestHelper.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/TestHelper.h b/TestHelper.h index c4dde1a6..6f9143c5 100644 --- a/TestHelper.h +++ b/TestHelper.h @@ -22,7 +22,9 @@ #pragma once #include <functional> + #include <boost/test/unit_test.hpp> + #include "JsonSpiritHeaders.h" #include <libethereum/State.h> #include <libevm/ExtVMFace.h> @@ -52,7 +54,7 @@ public: void importEnv(json_spirit::mObject& _o); void importState(json_spirit::mObject& _o, eth::State& _state); void importTransaction(json_spirit::mObject& _o); - void exportTest(bytes _output, eth::State& _statePost); + void exportTest(bytes const& _output, eth::State const& _statePost); eth::State m_statePre; eth::State m_statePost; |