|
|
|
@ -1,14 +1,14 @@ |
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 |
|
|
|
|
pragma solidity ^0.8.13; |
|
|
|
|
|
|
|
|
|
import "forge-std/Test.sol"; |
|
|
|
|
import {Test} from "forge-std/Test.sol"; |
|
|
|
|
import {DispatchedHook} from "../../contracts/hooks/DispatchedHook.sol"; |
|
|
|
|
import {IPostDispatchHook} from "../../contracts/interfaces/hooks/IPostDispatchHook.sol"; |
|
|
|
|
import {StandardHookMetadata} from "../../contracts/hooks/libs/StandardHookMetadata.sol"; |
|
|
|
|
import {Message} from "../../contracts/libs/Message.sol"; |
|
|
|
|
import {TypeCasts} from "../../contracts/libs/TypeCasts.sol"; |
|
|
|
|
|
|
|
|
|
contract DispatchedHookTest { |
|
|
|
|
contract DispatchedHookTest is Test { |
|
|
|
|
using Message for bytes; |
|
|
|
|
using TypeCasts for address; |
|
|
|
|
|
|
|
|
|