Skip to content

Commit

Permalink
rename tests contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
rya-sge committed Apr 30, 2024
1 parent 70bee4f commit 4383c71
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/accessControl.sol → test/AccessControlTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "forge-std/Test.sol";
import "./HelperContract.sol";
import {IERC20} from "ccip-v08/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
import {Client} from "ccip/libraries/Client.sol";
contract baseTest is HelperContract {
contract AccessControlTest is HelperContract {
// Arrange
function setUp() public {
// Deploy CCIP Sender
Expand Down
2 changes: 1 addition & 1 deletion test/base.sol → test/BaseTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "./HelperContract.sol";
import {IERC20} from "ccip-v08/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
import {ERC20Mock} from "openzeppelin-contracts/mocks/token/ERC20Mock.sol";
import {Client} from "ccip/libraries/Client.sol";
contract baseTest is HelperContract {
contract BaseTest is HelperContract {
ERC20Mock private erc20;
address private ROUTER = address(0x1);
event MessageData(string newMessageData);
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "../HelperContract.sol";
import {IERC20} from "ccip-v08/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
import {ERC20Mock} from "openzeppelin-contracts/mocks/token/ERC20Mock.sol";
import {Client} from "ccip/libraries/Client.sol";
contract baseTest is HelperContract {
contract BaseNativeTokenTest is HelperContract {
ERC20Mock private erc20;
address private ROUTER = address(0x1);
uint256 NATIVE_TOKEN_SELECTION = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "../utils/router.sol";
import {IERC20} from "ccip-v08/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
import {ERC20Mock} from "openzeppelin-contracts/mocks/token/ERC20Mock.sol";
import {Client} from "ccip/libraries/Client.sol";
contract RouterTest is HelperContract {
contract RouterNativeTest is HelperContract {
uint256 NATIVE_TOKEN_SELECTION = 0;
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
Expand Down
File renamed without changes.

0 comments on commit 4383c71

Please sign in to comment.