--- a/crates/evm-coder/src/abi/test.rs +++ b/crates/evm-coder/src/abi/test.rs @@ -48,41 +48,8 @@ } #[test] -fn encode_decode_uint64() { - test_impl_uint!(uint64); -} - -#[test] fn encode_decode_uint128() { test_impl_uint!(uint128); -} - -#[test] -fn encode_decode_bool_true() { - test_impl::( - 0xdeadbeef, - true, - &hex!( - " - deadbeef - 0000000000000000000000000000000000000000000000000000000000000001 - " - ), - ); -} - -#[test] -fn encode_decode_bool_false() { - test_impl::( - 0xdeadbeef, - false, - &hex!( - " - deadbeef - 0000000000000000000000000000000000000000000000000000000000000000 - " - ), - ); } #[test] @@ -167,27 +134,6 @@ " ) ); -} - -#[test] -fn encode_decode_vec_tuple_uint8_uint8() { - test_impl::>( - 0xdeadbeef, - vec![(0x0A, 0x0B), (0x0C, 0x0D), (0x0E, 0x0F)], - &hex!( - " - deadbeef - 0000000000000000000000000000000000000000000000000000000000000020 - 0000000000000000000000000000000000000000000000000000000000000003 - 000000000000000000000000000000000000000000000000000000000000000a - 000000000000000000000000000000000000000000000000000000000000000b - 000000000000000000000000000000000000000000000000000000000000000c - 000000000000000000000000000000000000000000000000000000000000000d - 000000000000000000000000000000000000000000000000000000000000000e - 000000000000000000000000000000000000000000000000000000000000000f - " - ), - ); } #[test]