parent
349080c98f
commit
490db5a7d7
@ -0,0 +1,17 @@ |
||||
pragma solidity ^0.4.7; |
||||
contract SimpleStorage { |
||||
uint public storedData; |
||||
|
||||
function SimpleStorage() public { |
||||
storedData = 100; |
||||
} |
||||
|
||||
function set(uint x) public { |
||||
storedData = x; |
||||
} |
||||
|
||||
function get() public view returns (uint retVal) { |
||||
return storedData; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,23 @@ |
||||
pragma solidity ^0.4.7; |
||||
import "./tests.sol"; |
||||
import "./simple_storage.sol"; |
||||
|
||||
contract MyTest { |
||||
SimpleStorage foo; |
||||
|
||||
function beforeAll() { |
||||
foo = new SimpleStorage(); |
||||
} |
||||
|
||||
function initialValueShouldBe100() public constant returns (bool) { |
||||
//return Assert.equal(foo.get(), 100, "initial value is not correct"); |
||||
return foo.get() == 100; |
||||
} |
||||
|
||||
function initialValueShouldBe200() public constant returns (bool) { |
||||
//return Assert.equal(foo.get(), 200, "initial value is not correct"); |
||||
return foo.get() == 200; |
||||
} |
||||
|
||||
} |
||||
|
@ -0,0 +1,17 @@ |
||||
pragma solidity ^0.4.7; |
||||
contract SimpleStorage { |
||||
uint public storedData; |
||||
|
||||
function SimpleStorage() public { |
||||
storedData = 100; |
||||
} |
||||
|
||||
function set(uint x) public { |
||||
storedData = x; |
||||
} |
||||
|
||||
function get() public view returns (uint retVal) { |
||||
return storedData; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,28 @@ |
||||
pragma solidity ^0.4.7; |
||||
import "./tests.sol"; |
||||
import "./simple_storage.sol"; |
||||
|
||||
contract MyTest { |
||||
SimpleStorage foo; |
||||
uint i = 0; |
||||
|
||||
function beforeEach() { |
||||
foo = new SimpleStorage(); |
||||
if (i == 1) { |
||||
foo.set(200); |
||||
} |
||||
i += 1; |
||||
} |
||||
|
||||
function initialValueShouldBe100() public constant returns (bool) { |
||||
//return Assert.equal(foo.get(), 100, "initial value is not correct"); |
||||
return foo.get() == 100; |
||||
} |
||||
|
||||
function initialValueShouldBe200() public constant returns (bool) { |
||||
//return Assert.equal(foo.get(), 200, "initial value is not correct"); |
||||
return foo.get() == 200; |
||||
} |
||||
|
||||
} |
||||
|
Loading…
Reference in new issue