18 lines
285 B
Solidity
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");
|
||
|
}
|
||
|
}
|