Skip to content

Commit e9c9b47

Browse files
committed
Added setup function to KDONft test
1 parent 263c000 commit e9c9b47

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/foundry/test/KDONft.t.sol

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,12 @@
22
pragma solidity ^0.8.13;
33

44
import { Test, console } from "forge-std/Test.sol";
5+
import { KDONft } from "../contracts/KDONft.sol";
56

6-
contract KDONft is Test { }
7+
contract KDONftTest is Test {
8+
KDONft kdoNft;
9+
10+
function setUp() public {
11+
kdoNft = new KDONft();
12+
}
13+
}

0 commit comments

Comments
 (0)