generated from PaulRBerg/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
703ff89
commit 74d8e0d
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} |