(self)
| 61 | assert out.shape == (1, 3, 64) |
| 62 | |
| 63 | def test_get_router_input_dim(self): |
| 64 | model = TinyModel() |
| 65 | adapter = get_adapter(model) |
| 66 | assert adapter.get_router_input_dim(model) == 64 |
| 67 | |
| 68 | def test_unprobeable_model_raises(self): |
| 69 | """Model with no recognizable structure raises RuntimeError from UniversalAdapter.""" |
nothing calls this directly
no test coverage detected