コード例 #1
0
ファイル: tests.py プロジェクト: yoavram/python-exercise
    def test_house_with_three_different_rooms(self):
        rectangle_room = task4.RectangleRoom(5, 20, 5)
        circle_room = task4.CircleRoom(5.6418959, 5)
        triangle_room = task4.TriangleRoom(15.196713713, 5)

        house = task4.House({rectangle_room, circle_room, triangle_room})

        self.assertEqual(round(house.calculate_volume()), 1500)
コード例 #2
0
ファイル: tests.py プロジェクト: yoavram/python-exercise
    def test_house_with_no_rooms(self):
        house = task4.House({})

        self.assertEqual(house.calculate_volume(), 0)
コード例 #3
0
ファイル: tests.py プロジェクト: yoavram/python-exercise
 def test_ctor(self):
     house = task4.House()
コード例 #4
0
ファイル: tests.py プロジェクト: yoavram/python-exercise
    def test_house_with_triangle_room(self):
        room = task4.TriangleRoom(15.196713713, 5)

        house = task4.House({room})

        self.assertEqual(round(house.calculate_volume()), 500)
コード例 #5
0
ファイル: tests.py プロジェクト: yoavram/python-exercise
    def test_house_with_circle_room(self):
        room = task4.CircleRoom(5.6418959, 5)

        house = task4.House({room})

        self.assertEqual(round(house.calculate_volume()), 500)
コード例 #6
0
ファイル: tests.py プロジェクト: yoavram/python-exercise
    def test_house_with_rectangle_room(self):
        room = task4.RectangleRoom(5, 20, 5)

        house = task4.House({room})

        self.assertEqual(house.calculate_volume(), 500)