Skip to content

Commit d1de23a

Browse files
authored
Merge pull request #73 from CompML/features/#41/unit_test_for_recall
add unit tests for update_recall
2 parents a8adb79 + 102d7e2 commit d1de23a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

tests/test_recall.py

+21
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,27 @@ def test_RecallClass_score(self):
6161
with self.assertRaises(Exception):
6262
score = obj.score(real, pred)
6363

64+
def test_RecallClass_update_recall(self):
65+
"""Test of _update_recall function.
66+
"""
67+
68+
# test of the normal case
69+
real = np.array([0, 1, 0, 0, 0])
70+
pred = np.array([1, 1, 0, 0, 0])
71+
72+
obj = TimeSeriesRecall()
73+
real_anomalies, predicted_anomalies = obj._prepare_data(real, pred)
74+
75+
score = obj._update_recall(real_anomalies, predicted_anomalies)
76+
self.assertEqual(score, 1.0)
77+
78+
# test of the empty case
79+
empty_real = np.array([])
80+
empty_pred = np.array([])
81+
82+
score = obj._update_recall(empty_real, empty_pred)
83+
self.assertEqual(score, 0.0)
84+
6485
def test_recall_function(self):
6586
"""Test of ts_recall function.
6687
"""

0 commit comments

Comments
 (0)