mirror of
https://github.com/KeyZox71/knl_meowscendence.git
synced 2025-08-16 05:22:53 +02:00
14 lines
239 B
Solidity
14 lines
239 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8;
|
|
|
|
import "src/contract/main.sol";
|
|
import "forge-std/Test.sol";
|
|
|
|
contract mainTest is Test, scoreStore {
|
|
function testUp() public {
|
|
up(2);
|
|
assertEq(test, 2);
|
|
}
|
|
}
|