Files
assetxContracts/lib/forge-std/test/CommonBase.t.sol

45 lines
1.3 KiB
Solidity
Raw Normal View History

2025-12-18 13:07:35 +08:00
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
import {CommonBase} from "../src/Base.sol";
import {StdConstants} from "../src/StdConstants.sol";
import {Test} from "../src/Test.sol";
contract CommonBaseTest is Test {
function testVmAddressValue() public pure {
assertEq(VM_ADDRESS, address(StdConstants.VM));
}
function testConsoleValue() public pure {
assertEq(CONSOLE, StdConstants.CONSOLE);
}
function testCreate2FactoryValue() public pure {
assertEq(CREATE2_FACTORY, StdConstants.CREATE2_FACTORY);
}
function testDefaultSenderValue() public pure {
assertEq(DEFAULT_SENDER, StdConstants.DEFAULT_SENDER);
}
function testDefaultTestContractValue() public pure {
assertEq(DEFAULT_TEST_CONTRACT, StdConstants.DEFAULT_TEST_CONTRACT);
}
function testMulticall3AddressValue() public pure {
assertEq(MULTICALL3_ADDRESS, address(StdConstants.MULTICALL3_ADDRESS));
}
function testSecp256k1OrderValue() public pure {
assertEq(SECP256K1_ORDER, StdConstants.SECP256K1_ORDER);
}
function testUint256MaxValue() public pure {
assertEq(UINT256_MAX, type(uint256).max);
}
function testVmValue() public pure {
assertEq(address(vm), address(StdConstants.VM));
}
}