()
| 48 | |
| 49 | |
| 50 | def test_random_forest(): |
| 51 | model = RandomForestClassifier(n_estimators=10, max_depth=4) |
| 52 | model.fit(X_train, y_train) |
| 53 | predictions = model.predict(X_test)[:, 1] |
| 54 | assert roc_auc_score(y_test, predictions) >= 0.95 |
| 55 | |
| 56 | |
| 57 | def test_svm_classification(): |
nothing calls this directly
no test coverage detected