(self)
| 8 | |
| 9 | class TestXGBoost(unittest.TestCase): |
| 10 | def test_version(self): |
| 11 | # b/175051617 prevent xgboost version downgrade. |
| 12 | self.assertGreaterEqual(StrictVersion(xgboost.__version__), StrictVersion("1.2.1")) |
| 13 | |
| 14 | def test_classifier(self): |
| 15 | X_train = np.random.random((100, 28)) |
nothing calls this directly
no outgoing calls
no test coverage detected