Skip to content

Instantly share code, notes, and snippets.

@AbhinavXT
Created August 12, 2023 12:16
Show Gist options
  • Save AbhinavXT/6e9bbd28e5c98d7963a5849b785fbd68 to your computer and use it in GitHub Desktop.
Save AbhinavXT/6e9bbd28e5c98d7963a5849b785fbd68 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "forge-std/Test.sol";
import "../src/Counter.sol";
contract CounterTest is Test {
Counter public counter;
function setUp() public {
counter = new Counter();
counter.setNumber(0);
}
function testIncrement() public {
counter.increment();
assertEq(counter.number(), 1);
}
function testSetNumber(uint256 x) public {
counter.setNumber(x);
assertEq(counter.number(), x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment