| 26 | }; |
| 27 | |
| 28 | TEST_F(WireConnectivityTest, cube) { |
| 29 | WireNetwork network = load_wire("cube.wire"); |
| 30 | WireConnectivity conn; |
| 31 | conn.set_wire_network(&network); |
| 32 | conn.compute(); |
| 33 | ASSERT_CONNECTIVITY_IS_VALID(network, conn); |
| 34 | } |
| 35 | |
| 36 | TEST_F(WireConnectivityTest, Brick5) { |
| 37 | WireNetwork network = load_wire("brick5.wire"); |
nothing calls this directly
no test coverage detected