one contract removed & indentation fixed

pull/1/head
aniket-engg 5 years ago
parent 42ffd1d373
commit 9994e9d282
  1. 54
      src/app/tabs/testTab/testTab.js

@ -38,46 +38,28 @@ class TestTabLogic {
generateTestContractSample () { generateTestContractSample () {
return `pragma solidity >=0.4.0 <0.7.0; return `pragma solidity >=0.4.0 <0.7.0;
import "remix_tests.sol"; // this import is automatically injected by Remix. import "remix_tests.sol"; // this import is automatically injected by Remix.
// file name has to end with '_test.sol' // file name has to end with '_test.sol'
contract test_1 { contract test_1 {
function beforeAll() public { function beforeAll() public {
// here should instantiate tested contract // here should instantiate tested contract
Assert.equal(uint(4), uint(3), "error in before all function"); Assert.equal(uint(4), uint(3), "error in before all function");
} }
function check1() public {
// use 'Assert' to test the contract
Assert.equal(uint(2), uint(1), "error message");
Assert.equal(uint(2), uint(2), "error message");
}
function check2() public view returns (bool) {
// use the return value (true or false) to test the contract
return true;
}
}
contract test_2 {
function beforeAll() public {
// here should instantiate tested contract
Assert.equal(uint(4), uint(3), "error in before all function");
}
function check1() public { function check1() public {
// use 'Assert' to test the contract // use 'Assert' to test the contract
Assert.equal(uint(2), uint(1), "error message"); Assert.equal(uint(2), uint(1), "error message");
Assert.equal(uint(2), uint(2), "error message"); Assert.equal(uint(2), uint(2), "error message");
} }
function check2() public view returns (bool) { function check2() public view returns (bool) {
// use the return value (true or false) to test the contract // use the return value (true or false) to test the contract
return true; return true;
} }
}` }
`
} }
} }

Loading…
Cancel
Save