Hi,
I have two smart contracts (SCs): sender and receiver and a tester. I am using truffle test. I don't know how to send Ether to a SC using truffle test. The sender has no Ether balance. Maybe this is the reason, I am getting VM error:
pragma solidity ^0.5.8;
contract sender{
address owner;
constructor () public{
owner = msg.sender;
}
function transferTo(address to, uint amount) public{
(bool success,) = to.call.value(amount)("");
require (success);
}
function() external payable{}
}
Following is my receiver:
pragma solidity ^0.5.8;
contract receiver{
address public owner;
mapping(address => uint) public balance;
constructor () public{
owner = msg.sender;
}
function() external payable{
balance[owner] += msg.value;}
}
Following is my tester:
pragma solidity ^0.5.8;
import "truffle/Assert.sol";
import "../contracts/sender.sol";
import "../contracts/receiver.sol";
contract TestTransfer{
function testTransfer() public{
sender senderObj = new sender();
receiver receiverObj = new receiver();
senderObj.transferTo(msg.sender, 10);
Assert.equal(receiverObj.balance(receiverObj.owner()), 10, "Received amount is not correct");
}
}
Output says that my test fails and displays an error message.
The output and the error message is given below:
TestTransfer
1) testTransfer
> No events were emitted
0 passing (5s)
1 failing
1) TestTransfer
testTransfer:
Error: Returned error: VM Exception while processing transaction: revert
at Context.TestCase (/home/zulfi/.nvm/versions/node/v10.23.3/lib/node_modules/truffle/build/webpack:/packages/core/lib/testing/SolidityTest.js:92:1)
at process._tickCallback (internal/process/next_tick.js:68:7)
Somebody please guide me. Maybe sender does not have any Ether.
Zulfi.