embark/test_apps/contracts_app/test/ownable_test.sol
2018-10-22 19:39:24 +02:00

18 lines
285 B
Solidity

pragma solidity ^0.4.7;
import "./../ownable.sol";
contract OwnableTests {
Ownable own;
function beforeAll() {
own = new Ownable();
}
function beforeEach() {
}
function shouldnotbezeroAddress() public {
Assert.equal(true, true, "owner is uninitialized");
}
}