test: add tests to generate runtime bytecode for the executors

This commit is contained in:
adrian
2025-09-09 11:29:32 +02:00
committed by Adrian Benavides
parent cefe7b1cfd
commit 299126da16
10 changed files with 37 additions and 4 deletions

View File

@@ -39,7 +39,12 @@ contract UniswapV3ExecutorExposed is UniswapV3Executor {
}
}
contract UniswapV3ExecutorTest is Test, Constants, Permit2TestHelper {
contract UniswapV3ExecutorTest is
Test,
TestUtils,
Constants,
Permit2TestHelper
{
using SafeERC20 for IERC20;
UniswapV3ExecutorExposed uniswapV3Exposed;
@@ -210,6 +215,10 @@ contract UniswapV3ExecutorTest is Test, Constants, Permit2TestHelper {
transferType
);
}
function testExportContract() public {
exportRuntimeBytecode(address(uniswapV3Exposed), "UniswapV3");
}
}
contract TychoRouterForBalancerV3Test is TychoRouterTestSetup {