Module ITest
Expand description
Module containing a contract’s types and functions.
interface ITest {
function setUp() external;
function failed() external view returns (bool failed);
function beforeTestSetup(bytes4 testSelector) public view returns (bytes[] memory beforeTestCalldata);
}
Structs§
- Function with signature
beforeTestSetup(bytes4)
and selector0x49b07678
. - Container type for the return parameters of the
beforeTestSetup(bytes4)
function. - Function with signature
failed()
and selector0xba414fa6
. - Container type for the return parameters of the
failed()
function. - Function with signature
setUp()
and selector0x0a9254e4
. - Container type for the return parameters of the
setUp()
function.
Enums§
- Container for all the
ITest
function calls.