Skip to content

Commit

Permalink
setup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tnkshuuhei committed Oct 11, 2024
1 parent 703ff89 commit 74d8e0d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions test/CEP.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.25;

import { Test } from "forge-std/Test.sol";
import { console2 } from "forge-std/console2.sol";

import "../src/CEP.sol";

contract CEPTest is Test {
CEP internal cep;
address owner = makeAddr("owner");
address admin = makeAddr("admin");
address alice = makeAddr("alice");
address bob = makeAddr("bob");
address charlie = makeAddr("charlie");
address treasury = makeAddr("treasury");

VotingCEPToken internal voteToken;
CEPGovernor internal governor;
IEAS internal eas;

function setUp() public virtual {
voteToken = new VotingCEPToken(owner, owner, owner);
}
}

0 comments on commit 74d8e0d

Please sign in to comment.