Skip to content

Commit

Permalink
stub basic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmonte committed Nov 18, 2024
1 parent 5413d05 commit d146ad1
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions test/Conversion.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,20 @@ pragma solidity 0.8.25;

import {Bootstrap} from "test/utils/Bootstrap.sol";

contract CounterTest is Bootstrap {
contract ConversionTest is Bootstrap {
function setUp() public {
/// @dev uncomment the following line to test in a forked environment
/// at a specific block number
// vm.rollFork(NETWORK_BLOCK_NUMBER);

initializeOptimismGoerli();
}
}

contract Increment is CounterTest {
function testIncrement() public {
counter.increment();
assertEq(counter.number(), 1);
}
}
function testConversionRateFixed17to1() public {}

contract SetNumber is CounterTest {
function testSetNumber(uint256 x) public {
counter.setNumber(x);
assertEq(counter.number(), x);
}
function testDeposit() public {}

function testVest() public {}

function testCannotWithdrawSNXUntilTwoYears() public {}
}

0 comments on commit d146ad1

Please sign in to comment.