embark/dapps/tests/app/test/solidity_test.sol
André Medeiros 5e560768ad chore: test runner tests (#1884)
* chore: test runner tests

* chore: mocha test runner tests

* chore: add solidity test file to dapp
2019-09-07 15:55:24 -04:00

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");
}
}