Skip to content

Commit

Permalink
add basic function to test coverage ci
Browse files Browse the repository at this point in the history
  • Loading branch information
spengrah committed Nov 19, 2024
1 parent 128e880 commit cc39418
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
20 changes: 12 additions & 8 deletions src/Contract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,35 @@ pragma solidity ^0.8.18;
// import { console2 } from "forge-std/Test.sol"; // remove before deploy

contract Contract {
/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
CUSTOM ERRORS
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
DATA MODELS
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
CONSANTS
/*//////////////////////////////////////////////////////////////
CONSTANTS
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
MUTABLE STATE
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
PUBLIC FUNCTIONS
//////////////////////////////////////////////////////////////*/

function doSomething() public pure returns (uint256) {
return 1;
}
}
4 changes: 3 additions & 1 deletion test/Contract.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,7 @@ contract ContractTest is Test {
}

contract UnitTests is ContractTest {
function test_empty() public view { }
function test_doSomething() public view {
cntrct.doSomething();
}
}

0 comments on commit cc39418

Please sign in to comment.