(self)
| 20 | self.assertEqual(s.shares, 75) |
| 21 | |
| 22 | def test_shares_check(self): |
| 23 | s = stock.Stock('GOOG', 100, 490.1) |
| 24 | with self.assertRaises(TypeError): |
| 25 | s.shares = '100' |
| 26 | |
| 27 | if __name__ == '__main__': |
| 28 | unittest.main() |
nothing calls this directly
no outgoing calls
no test coverage detected