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