* Clean some unused variables * Add basic infrastructure * Add real eth regression tests * Use check_call * Suppress stdout * Make 705 work * Less error prone way of testing
7 lines
135 B
Solidity
7 lines
135 B
Solidity
contract TEST {
|
|
function Test_SignedInteger_AdditionOverflow(int x) public {
|
|
int y = x + x;
|
|
assert(y > 0);
|
|
}
|
|
}
|