feat: initial commit

This commit is contained in:
Paul Razvan Berg
2022-07-16 14:36:29 +03:00
commit 43e1e113f4
47 changed files with 12941 additions and 0 deletions

19
test/Foo.t.sol Normal file
View File

@@ -0,0 +1,19 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.4;
import { console } from "forge-std/console.sol";
import { PRBTest } from "@prb/test/PRBTest.sol";
/// @dev See the "Writing Tests" section in the Foundry Book if this is your first time with Forge.
/// https://book.getfoundry.sh/forge/writing-tests
contract ContractTest is PRBTest {
function setUp() public {
// solhint-disable-previous-line no-empty-blocks
}
/// @dev Run Forge with `-vvvv` to see console logs.
function testExample() public {
console.log("Hello World");
assertTrue(true);
}
}