96cad7de9c
* tests: reorganize testing packages * gitignore and minor changes
16 lines
274 B
Solidity
16 lines
274 B
Solidity
pragma solidity 0.4.24;
|
|
|
|
import "../Initializable.sol";
|
|
import "../Petrifiable.sol";
|
|
|
|
|
|
contract LifecycleMock is Initializable, Petrifiable {
|
|
function initializeMock() public {
|
|
initialized();
|
|
}
|
|
|
|
function petrifyMock() public {
|
|
petrify();
|
|
}
|
|
}
|