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§
- before
Test Setup Call - Function with signature
beforeTestSetup(bytes4)and selector0x49b07678. - before
Test Setup Return - Container type for the return parameters of the
beforeTestSetup(bytes4)function. - failed
Call - Function with signature
failed()and selector0xba414fa6. - failed
Return - Container type for the return parameters of the
failed()function. - setUp
Call - Function with signature
setUp()and selector0x0a9254e4. - setUp
Return - Container type for the return parameters of the
setUp()function.
Enums§
- ITest
Calls - Container for all the
ITestfunction calls.