Add Unit Test
This commit is contained in:
parent
5286c07296
commit
3304c1a738
7 changed files with 44 additions and 14 deletions
13
contracts/HelloEthSalon.sol
Normal file
13
contracts/HelloEthSalon.sol
Normal file
|
@ -0,0 +1,13 @@
|
|||
pragma solidity ^0.4.4;
|
||||
|
||||
contract HelloEthSalon {
|
||||
string message = "I know smart contract testing!!";
|
||||
|
||||
function HelloEthSalon() {
|
||||
// constructor
|
||||
}
|
||||
|
||||
function GetMessage() returns (string) {
|
||||
return message;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue