(self)
| 11 | self.assertEqual(s.price, 490.1) |
| 12 | |
| 13 | def test_cost(self): |
| 14 | s = stock.Stock('GOOG', 100, 490.1) |
| 15 | self.assertEqual(s.cost, 49010.0) |
| 16 | |
| 17 | def test_sell(self): |
| 18 | s = stock.Stock('GOOG', 100, 490.1) |
nothing calls this directly
no outgoing calls
no test coverage detected