Пример #1
0
class TestCoconuts(unittest.TestCase):

    def setUp(self):
        """
        Create an inventory and coconuts to add to the inventory.
        """
        self.inv = Inventory()
        self.coco1 = Coconut("South Asian")
        self.coco2 = Coconut("American")
        self.coco3 = Coconut("Middle Eastern")
    
    def testCoconuts(self):
        """
        Make sure each type of coconut has the right weight property
        """
        self.assertEqual(self.coco1.weight, 3, "South Asian coconuts should weigh 3")
        self.assertEqual(self.coco2.weight, 3.5, "American coconuts should weigh 3.5")
        self.assertEqual(self.coco3.weight, 2.5, "Middle Eastern coconuts should weigh 2.5")
        self.assertRaises(AttributeError, Coconut, "Pacific Island")
        
    def testAddCoconut(self):
        """
        Make sure that the addCoconut method of the Inventory class raises an exception when trying to add something other than coconuts.
        """
        self.assertRaises(AttributeError, self.inv.addCoconut, "foobar")
        
    def testTotalWeight(self):
        """
        Verify that the addCoconut method adds coconuts to the inventory properly and that Inventory's totalWeight method adds properly.
        """
        self.inv.addCoconut(self.coco1, 2)
        self.inv.addCoconut(self.coco3)
        self.inv.addCoconut(self.coco2, 3)
        self.assertEqual(self.inv.totalWeight(), 19, "The total weight of the inventoray should now by 19.")
Пример #2
0
    def testInventoryWeight(self):
        """
        Gimme 2 South Asian, 1 Middle Eastern, and 3 American coconuts weighing 19 units
        Also check that adding invalid instance of Coconut raises an error
        """
        inv = Inventory()
        inv.addCoconut(self.southAsian)
        inv.addCoconut(self.southAsian)
        inv.addCoconut(self.middleEastern)
        inv.addCoconut(self.american)
        inv.addCoconut(self.american)
        inv.addCoconut(self.american)

        observed = inv.totalWeight()
        self.assertEqual(observed, 19.0)
        
        self.assertRaises(TypeError, inv.addCoconut, 'Dodecelsulfate')