(self, first, second, msg=None)
| 8 | |
| 9 | class TestItem: |
| 10 | def assertSortedEqual(self, first, second, msg=None): |
| 11 | assert sorted(first) == sorted(second), msg |
| 12 | |
| 13 | def test_simple(self): |
| 14 | class TestItem(Item): |
no outgoing calls
no test coverage detected