|
|
@ -6,12 +6,13 @@ class ETHContractTestCase(unittest.TestCase): |
|
|
|
|
|
|
|
|
|
|
|
def setUp(self): |
|
|
|
def setUp(self): |
|
|
|
self.code = "0x60606040525b603c5b60006010603e565b9050593681016040523660008237602060003683856040603f5a0204f41560545760206000f35bfe5b50565b005b73c3b2ae46792547a96b9f84405e36d0e07edcd05c5b905600a165627a7a7230582062a884f947232ada573f95940cce9c8bfb7e4e14e21df5af4e884941afb55e590029" |
|
|
|
self.code = "0x60606040525b603c5b60006010603e565b9050593681016040523660008237602060003683856040603f5a0204f41560545760206000f35bfe5b50565b005b73c3b2ae46792547a96b9f84405e36d0e07edcd05c5b905600a165627a7a7230582062a884f947232ada573f95940cce9c8bfb7e4e14e21df5af4e884941afb55e590029" |
|
|
|
|
|
|
|
self.creation_code = "0x60606040525b603c5b60006010603e565b9050593681016040523660008237602060003683856040603f5a0204f41560545760206000f35bfe5b50565b005b73c3b2ae46792547a96b9f84405e36d0e07edcd05c5b905600a165627a7a7230582062a884f947232ada573f95940cce9c8bfb7e4e14e21df5af4e884941afb55e590029" |
|
|
|
|
|
|
|
|
|
|
|
class Getinstruction_listTestCase(ETHContractTestCase): |
|
|
|
class Getinstruction_listTestCase(ETHContractTestCase): |
|
|
|
|
|
|
|
|
|
|
|
def runTest(self): |
|
|
|
def runTest(self): |
|
|
|
|
|
|
|
|
|
|
|
contract = ETHContract(self.code) |
|
|
|
contract = ETHContract(self.code, self.creation_code) |
|
|
|
|
|
|
|
|
|
|
|
instruction_list = contract.get_instruction_list() |
|
|
|
instruction_list = contract.get_instruction_list() |
|
|
|
|
|
|
|
|
|
|
|