(self, loaded_session)
| 58 | assert len(params_with_desc) > 0 |
| 59 | |
| 60 | def test_unknown_method(self, loaded_session): |
| 61 | with pytest.raises(ValueError, match="no method"): |
| 62 | loaded_session.ifc_shape_docs("nonexistent_method") |
| 63 | |
| 64 | def test_private_method_rejected(self, loaded_session): |
| 65 | with pytest.raises(ValueError): |
nothing calls this directly
no test coverage detected