embark/dapps/tests/app/test/solidity_test.sol

15 lines
218 B
Solidity

pragma solidity ^0.4.25;
import 'remix_tests.sol';
contract MyTest {
uint i = 0;
function beforeAll() {
i += 1;
}
function valueShouldBe1() public {
Assert.equal(1, i, "value is not correct");
}
}