def test_slope_style_score(self):
     self.assertEqual(94.66,
                      solution.slope_style_score([94, 95, 95, 95, 90]))
     self.assertEqual(80.0,
                      solution.slope_style_score([60, 70, 80, 90, 100]))
     self.assertEqual(93.5,
                      solution.slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 2
0
    def test_slope_style_score(self):

        self.assertEqual(94.67, slope_style_score([94, 95, 95, 95, 90]))
        # 94.66
        self.assertEqual(80.0, slope_style_score([60, 70, 80, 90, 100]))
        # 80.0
        self.assertEqual(93.5, slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 3
0
 def test_1(self):
     self.assertEqual(94.67, solution.slope_style_score([94, 95, 95, 95, 90]))
Exemplo n.º 4
0
	def test_slope_style_score_0(self):
		self.assertAlmostEqual(94.66, slope_style_score([94, 95, 95, 95, 90]))
Exemplo n.º 5
0
 def test_slope_style_score4(self):
     self.assertEqual(10, solution.slope_style_score([10, 10, 1]))
Exemplo n.º 6
0
 def test_with_float_average(self):
     self.assertEqual(94.66, solution.slope_style_score([94, 95, 95, 95, 90]))
Exemplo n.º 7
0
 def test_problem_statement_cases(self):
     self.assertEqual(94.66, slope_style_score([94, 95, 95, 95, 90]))
     self.assertEqual(80.0, slope_style_score([60, 70, 80, 90, 100]))
     self.assertEqual(93.5, slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 8
0
 def test_one(self):
     self.assertAlmostEqual(94.66, slope_style_score([94, 95, 95, 95, 90]), places=1)
Exemplo n.º 9
0
 def test_slope_style_two_highest_and_lowest_scores(self):
     self.assertEqual("%.2f" % round(70), solution.slope_style_score([50, 50, 60, 100, 100]))
Exemplo n.º 10
0
 def test_slope_style_two_loweset_scores(self):
     self.assertEqual("%.2f" % round(60), solution.slope_style_score([30, 30, 80, 70, 100]))
Exemplo n.º 11
0
 def test_one(self):
     self.assertEquals(94.66, slope_style_score([94, 95, 95, 95, 90]))
 def test_slope_style_score(self):
     self.assertEqual(slope_style_score([94, 95, 95, 95, 90]), 94.66)
     self.assertEqual(slope_style_score([60, 70, 80, 90, 100]), 80.0)
     self.assertEqual(slope_style_score([96, 95.5, 93, 89, 92]), 93.5)
Exemplo n.º 13
0
 def test_problem_statement_cases(self):
     self.assertEqual(94.66, slope_style_score([94, 95, 95, 95, 90]))
     self.assertEqual(80.0, slope_style_score([60, 70, 80, 90, 100]))
     self.assertEqual(93.5, slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 14
0
 def test0(self):
     self.assertEqual(94.67, round(slope_style_score([94, 95, 95, 95, 90]), 2))
 def test_solution(self):
     self.assertEqual(94.66, slope_style_score([94, 95, 95, 95, 90]))
     self.assertEqual(80.0, slope_style_score([60, 70, 80, 90, 100]))
     self.assertEqual(93.5, slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 16
0
 def test_three(self):
     self.assertEqual(93.5, slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 17
0
 def test_slope_style1(self):
     self.assertEqual("%.2f" % round(50), solution.slope_style_score([10, 40, 50, 60, 100]))
Exemplo n.º 18
0
 def test_three(self):
     self.assertEqual(93.5, slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 19
0
 def test_slope_style_two_highest_scores(self):
     self.assertEqual("%.2f" % round(80), solution.slope_style_score([10, 60, 80, 100, 100]))
Exemplo n.º 20
0
 def test_slope_style_score(self):
     self.assertEqual(94.66,\
             solution.slope_style_score([94, 95, 95, 95, 90]))
     self.assertEqual(80.0,\
             solution.slope_style_score([60, 70, 80, 90, 100]))
Exemplo n.º 21
0
 def test_slope_style_score3(self):
     self.assertEqual(4, solution.slope_style_score([1, 2, 3, 4, 5, 6, 7]))
Exemplo n.º 22
0
 def test_with_3_elements(self):
     self.assertEqual(2.0, solution.slope_style_score([1,80,2]))
Exemplo n.º 23
0
 def test_slope_style_score4(self):
     self.assertEqual(10, solution.slope_style_score([10, 10, 1]))
Exemplo n.º 24
0
 def test_slope_style_score3(self):
     self.assertEqual(4, solution.slope_style_score([1, 2, 3, 4, 5, 6, 7]))
Exemplo n.º 25
0
 def test_slope_style_score5(self):
     self.assertEqual(2, solution.slope_style_score([1, 2, 3]))
Exemplo n.º 26
0
 def test_slope_style_score5(self):
     self.assertEqual(2, solution.slope_style_score([1, 2, 3]))
Exemplo n.º 27
0
 def test_slope_style_score_3(self):
     self.assertEqual(93.5,
                      solution.slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 28
0
 def test_3(self):
     self.assertEqual(93.5, solution.slope_style_score([96, 95.5, 93, 89, 92]))
Exemplo n.º 29
0
 def test_slope_style_score_1(self):
     self.assertEqual(94.67,
                      solution.slope_style_score([94, 95, 95, 95, 90]))
Exemplo n.º 30
0
 def test_2(self):
     self.assertEqual(80.0, solution.slope_style_score([60, 70, 80, 90, 100]))
Exemplo n.º 31
0
 def test_slope_style_score_2(self):
     self.assertEqual(80.0,
                      solution.slope_style_score([60, 70, 80, 90, 100]))
Exemplo n.º 32
0
 def test_two(self):
     self.assertEqual(80.0, slope_style_score([60, 70, 80, 90, 100]))
Exemplo n.º 33
0
 def test_slope_style_score(self):
     self.assertEqual(slope_style_score([94, 95, 95, 95, 90]), 94.66)
     self.assertEqual(slope_style_score([60, 70, 80, 90, 100]), 80.0)
     self.assertEqual(slope_style_score([96, 95.5, 93, 89, 92]), 93.5)
Exemplo n.º 34
0
 def test_one(self):
     self.assertEqual(94.67, slope_style_score([94, 95, 95, 95, 90]))
Exemplo n.º 35
0
 def test_with_numbers_that_will_normally_round_up(self):
     self.assertEqual(solution.slope_style_score([1, 2, 3, 4, 5, 6, 8, 9]),
                      4.66)
Exemplo n.º 36
0
 def test_two(self):
     self.assertEqual(80.0, slope_style_score([60, 70, 80, 90, 100]))
Exemplo n.º 37
0
 def test_with_numbers_that_will_normally_round_down(self):
     self.assertEqual(solution.slope_style_score([96, 95.5, 94, 89, 92]),
                      93.83)
Exemplo n.º 38
0
 def test_with_repeating_largest_and_smallest_scores(self):
     self.assertEqual(solution.slope_style_score([1, 1, 2, 3, 4, 6, 6]),
                      3.20)
Exemplo n.º 39
0
 def test_slope_style_score(self):
     self.assertEqual(94.66,\
             solution.slope_style_score([94, 95, 95, 95, 90]))
     self.assertEqual(80.0,\
             solution.slope_style_score([60, 70, 80, 90, 100]))