Improve Address tests (#4191)

This commit is contained in:
Ernesto García
2023-04-25 13:31:01 +02:00
committed by GitHub
parent 6aac66d065
commit 1a079d258b
3 changed files with 45 additions and 1 deletions

View File

@ -14,6 +14,10 @@ contract CallReceiverMock {
return "0x1234";
}
function mockFunctionEmptyReturn() public payable {
emit MockFunctionCalled();
}
function mockFunctionWithArgs(uint256 a, uint256 b) public payable returns (string memory) {
emit MockFunctionCalledWithArgs(a, b);