/ test_apps / test_app / some_folder / test_contract.sol
test_contract.sol
 1  pragma solidity ^0.4.17;
 2  
 3  import "another_folder/another_test.sol";
 4  import "zeppelin-solidity/contracts/ownership/Ownable.sol";
 5  
 6  contract SimpleStorageTest is Ownable {
 7    uint public storedData;
 8  
 9    function() public payable { }
10  
11    function SimpleStorage(uint initialValue) public {
12      storedData = initialValue;
13    }
14  
15    function set(uint x) public {
16      storedData = x;
17    }
18  
19    function get() public view returns (uint retVal) {
20      return storedData;
21    }
22  
23  }