Skip to content

Commit 2128ddd

Browse files
committed
unit tests
1 parent f8040a7 commit 2128ddd

File tree

5 files changed

+1083
-67
lines changed

5 files changed

+1083
-67
lines changed
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// SPDX-License-Identifier: BUSL-1.1
2+
pragma solidity ^0.8.24;
3+
4+
import { MockERC20 } from "./MockERC20.sol";
5+
6+
contract MockPerp is MockERC20 {
7+
uint256 private _tvl;
8+
function getTVL() public view returns (uint256) {
9+
return _tvl;
10+
}
11+
12+
function setTVL(uint256 tvl) public {
13+
_tvl = tvl;
14+
}
15+
}

0 commit comments

Comments
 (0)