()
| 303 | |
| 304 | #[test] |
| 305 | fn bytecode_linking() { |
| 306 | let hardhat = test_hardhat(); |
| 307 | |
| 308 | let mut libraries = HashMap::new(); |
| 309 | |
| 310 | for lib in IPC_DEPS { |
| 311 | libraries.insert(lib.to_owned(), et::Address::default()); |
| 312 | } |
| 313 | |
| 314 | // This one requires a subset of above libraries. |
| 315 | let _bytecode = hardhat |
| 316 | .prepare_deployment_artifact( |
| 317 | "GatewayManagerFacet.sol", |
| 318 | "GatewayManagerFacet", |
| 319 | &libraries, |
| 320 | ) |
| 321 | .unwrap(); |
| 322 | } |
| 323 | |
| 324 | #[test] |
| 325 | fn bytecode_missing_link() { |
nothing calls this directly
no test coverage detected