Ejemplo n.º 1
0
 def test_GIVEN_one_masked_one_nparray_WHEN_points_count_THEN_count_correct(
         self):
     stats = StatsAnalyzer(self.data1, self.missing2)
     res = stats.points_count()
     assert_that(res[0].num_points, is_(7))
Ejemplo n.º 2
0
 def test_GIVEN_one_masked_one_nparray_WHEN_points_count_THEN_count_correct(self):
     stats = StatsAnalyzer(self.data1, self.missing2)
     res = stats.points_count()
     assert_that(res[0].num_points, is_(7))
Ejemplo n.º 3
0
 def test_GIVEN_missing_vals_WHEN_count_THEN_points_count_correct(self):
     stats = StatsAnalyzer(self.missing1, self.missing2)
     res = stats.points_count()
     assert_that(res[0].num_points, is_(6))
Ejemplo n.º 4
0
 def test_GIVEN_missing_vals_WHEN_count_THEN_points_count_correct(self):
     stats = StatsAnalyzer(self.missing1, self.missing2)
     res = stats.points_count()
     assert_that(res[0].num_points, is_(6))