integration test: initial commit

This commit is contained in:
ramil
2021-04-16 16:57:11 +03:00
parent 31cbaec567
commit 141b3eaffe
9 changed files with 27342 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.7.0;
contract Greeter {
string greeting;
event Greet(string value);
constructor(string memory _greeting) {
greeting = _greeting;
}
function greet() public view returns (string memory) {
return greeting;
}
function setGreeting(string memory _greeting) public {
greeting = _greeting;
emit Greet(greeting);
}
}