(self)
| 64 | self.assertEqual(mixed_sorting([8, 13, 11, 90, -5, 4]), [4, 13, 11, 8, -5, 90]) |
| 65 | |
| 66 | def test_2(self): |
| 67 | self.assertEqual(mixed_sorting([1, 2, 3, 6, 5, 4]), [5, 2, 3, 4, 1, 6]) |
| 68 | |
| 69 | |
| 70 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected