struct _BoolExpectation {
bool actual
_BoolExpectationNot not
}
struct _BoolExpectationNot {
bool actual
}
struct _UintExpectation {
uint256 actual
_UintExpectationNot not
}
struct _UintExpectationNot {
uint256 actual
}
struct _IntExpectation {
int256 actual
_IntExpectationNot not
}
struct _IntExpectationNot {
int256 actual
}
struct _AddressExpectation {
address actual
_AddressExpectationNot not
}
struct _AddressExpectationNot {
address actual
}
struct _Bytes32Expectation {
bytes32 actual
_Bytes32ExpectationNot not
}
struct _Bytes32ExpectationNot {
bytes32 actual
}
struct _BytesExpectation {
bytes actual
_BytesExpectationNot not
}
struct _BytesExpectationNot {
bytes actual
}
struct _StringExpectation {
string actual
_StringExpectationNot not
}
struct _StringExpectationNot {
string actual
}
struct _CallExpectation {
Call call
_CallExpectationNot not
}
struct _CallExpectationNot {
Call call
}