-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunitest.py
35 lines (27 loc) · 1.23 KB
/
unitest.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
import unittest
from car_doors import CarDoorsClass # Assuming the class is saved in car_doors.py
class TestCarDoorsClass(unittest.TestCase):
def setUp(self):
"""Setup for each test method. This is run before each test."""
self.car = CarDoorsClass()
def test_initial_doors(self):
"""Test that the initial number of doors is 0."""
self.assertEqual(self.car.get_number_of_doors(), 0)
def test_set_valid_number_of_doors(self):
"""Test setting a valid number of doors."""
self.car.set_number_of_doors(4)
self.assertEqual(self.car.get_number_of_doors(), 4)
def test_set_invalid_number_of_doors(self):
"""Test setting an invalid number of doors (negative value)."""
with self.assertRaises(ValueError):
self.car.set_number_of_doors(-1)
def test_set_invalid_type(self):
"""Test setting a non-integer value for number of doors."""
with self.assertRaises(ValueError):
self.car.set_number_of_doors("four")
def test_set_zero_doors(self):
"""Test setting zero doors (invalid)."""
with self.assertRaises(ValueError):
self.car.set_number_of_doors(0)
if __name__ == '__main__':
unittest.main()