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/solidity/contracts/app/Modified.sol

21 lines
271 B

pragma solidity ^0.7.0;
contract Modified {
uint counter;
modifier m {
_;
}
// When modifier coverage is on, branch cov should be 50%
// When off: 100%
function set(uint i)
m
public
payable
virtual
{
counter = counter + i;
}
}