(self)
| 11 | |
| 12 | class test_Note(unittest.TestCase): |
| 13 | def setUp(self): |
| 14 | self.c = Note("C", 5) |
| 15 | self.c1 = Note("C") |
| 16 | self.c2 = Note("C", 3) |
| 17 | self.b4 = Note("B", 4) |
| 18 | self.b5 = Note("B", 5) |
| 19 | |
| 20 | def test_cmp(self): |
| 21 | self.assertTrue(self.c1 <= self.b5) |