()
| 296 | |
| 297 | #[test] |
| 298 | fn bytecode_linking() { |
| 299 | let hardhat = test_hardhat(); |
| 300 | |
| 301 | let mut libraries = HashMap::new(); |
| 302 | |
| 303 | for lib in IPC_DEPS { |
| 304 | libraries.insert(lib.to_owned(), et::Address::default()); |
| 305 | } |
| 306 | |
| 307 | // This one requires a subset of above libraries. |
| 308 | let _bytecode = hardhat |
| 309 | .bytecode("GatewayManagerFacet.sol", "GatewayManagerFacet", &libraries) |
| 310 | .unwrap(); |
| 311 | } |
| 312 | |
| 313 | #[test] |
| 314 | fn bytecode_missing_link() { |
nothing calls this directly
no test coverage detected