Code coverage for Solidity smart-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
solidity-coverage/test/sources/cli/Events.sol

17 lines
342 B

pragma solidity ^0.4.3;
contract Events {
uint x = 0;
event LogEventOne( uint x, address y);
event LogEventTwo( uint x, address y);
function test(uint val) {
LogEventOne(100, msg.sender);
x = x + val;
LogEventTwo(200, msg.sender);
}
function getX() returns (uint){
return x;
}
}