17 lines
257 B
Solidity
17 lines
257 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.13;
|
|
|
|
import { Test, console } from "forge-std/Test.sol";
|
|
import { Geld } from "../src/Geld.sol";
|
|
|
|
contract Gels is Test {
|
|
Geld public geld;
|
|
|
|
function setUp() public {
|
|
geld = new Geld();
|
|
}
|
|
|
|
|
|
|
|
}
|