Files
python/exercises/practice/darts/darts_test.py
BethanyG aa3e379ff1 [DOCS]: Update Python Versions and Requirements (#3467)
* Additional sweep to update Python versions and supported Python versions.
* Fixed requirements and CONTRIBUTING.
* Trying a different line skip to see if it fixes CI.  CI is failing on test file generation again.
* Once again re-rendering tests to see if it fixes CI.
[no important files changed]
2023-07-16 15:09:14 -07:00

51 lines
1.4 KiB
Python

# 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-16
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)