From a226db73384ac1b588e07a28dd8f1ff92cbdf6f7 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Mon, 28 Nov 2016 00:21:01 +0000 Subject: Split out Solidity-specific part of ExecutionFramework --- test/contracts/AuctionRegistrar.cpp | 6 +++--- test/contracts/FixedFeeRegistrar.cpp | 2 +- test/contracts/Wallet.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'test/contracts') diff --git a/test/contracts/AuctionRegistrar.cpp b/test/contracts/AuctionRegistrar.cpp index 0b573bca..c156efd1 100644 --- a/test/contracts/AuctionRegistrar.cpp +++ b/test/contracts/AuctionRegistrar.cpp @@ -213,7 +213,7 @@ contract GlobalRegistrar is Registrar, AuctionSystem { static unique_ptr s_compiledRegistrar; -class AuctionRegistrarTestFramework: public ExecutionFramework +class AuctionRegistrarTestFramework: public SolidityExecutionFramework { protected: void deployRegistrar() @@ -229,11 +229,11 @@ protected: BOOST_REQUIRE(!m_output.empty()); } - using ContractInterface = ExecutionFramework::ContractInterface; + using ContractInterface = SolidityExecutionFramework::ContractInterface; class RegistrarInterface: public ContractInterface { public: - RegistrarInterface(ExecutionFramework& _framework): ContractInterface(_framework) {} + RegistrarInterface(SolidityExecutionFramework& _framework): ContractInterface(_framework) {} void reserve(string const& _name) { callString("reserve", _name); diff --git a/test/contracts/FixedFeeRegistrar.cpp b/test/contracts/FixedFeeRegistrar.cpp index 8aabdac2..829205d5 100644 --- a/test/contracts/FixedFeeRegistrar.cpp +++ b/test/contracts/FixedFeeRegistrar.cpp @@ -125,7 +125,7 @@ contract FixedFeeRegistrar is Registrar { static unique_ptr s_compiledRegistrar; -class RegistrarTestFramework: public ExecutionFramework +class RegistrarTestFramework: public SolidityExecutionFramework { protected: void deployRegistrar() diff --git a/test/contracts/Wallet.cpp b/test/contracts/Wallet.cpp index 935baf5b..6fbee6f1 100644 --- a/test/contracts/Wallet.cpp +++ b/test/contracts/Wallet.cpp @@ -435,7 +435,7 @@ contract Wallet is multisig, multiowned, daylimit { static unique_ptr s_compiledWallet; -class WalletTestFramework: public ExecutionFramework +class WalletTestFramework: public SolidityExecutionFramework { protected: void deployWallet( -- cgit