-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdarts_test.py
50 lines (34 loc) · 1.44 KB
/
darts_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# These tests are auto-generated with test data from:
# https://github.com/exercism/problem-specifications/tree/main/exercises/darts/canonical-data.json
# File last updated on 2023-07-19
import unittest
from darts import (
score,
)
class DartsTest(unittest.TestCase):
def test_missed_target(self):
self.assertEqual(score(-9, 9), 0)
def test_on_the_outer_circle(self):
self.assertEqual(score(0, 10), 1)
def test_on_the_middle_circle(self):
self.assertEqual(score(-5, 0), 5)
def test_on_the_inner_circle(self):
self.assertEqual(score(0, -1), 10)
def test_exactly_on_center(self):
self.assertEqual(score(0, 0), 10)
def test_near_the_center(self):
self.assertEqual(score(-0.1, -0.1), 10)
def test_just_within_the_inner_circle(self):
self.assertEqual(score(0.7, 0.7), 10)
def test_just_outside_the_inner_circle(self):
self.assertEqual(score(0.8, -0.8), 5)
def test_just_within_the_middle_circle(self):
self.assertEqual(score(-3.5, 3.5), 5)
def test_just_outside_the_middle_circle(self):
self.assertEqual(score(-3.6, -3.6), 1)
def test_just_within_the_outer_circle(self):
self.assertEqual(score(-7.0, 7.0), 1)
def test_just_outside_the_outer_circle(self):
self.assertEqual(score(7.1, -7.1), 0)
def test_asymmetric_position_between_the_inner_and_middle_circles(self):
self.assertEqual(score(0.5, -4), 5)