(self)
| 770 | assert_equal(a, np.arange(5)) |
| 771 | |
| 772 | def test_empty(self): |
| 773 | a = np.array([[[]]]) |
| 774 | b = np.array([[], []]) |
| 775 | c = tile(b, 2).shape |
| 776 | d = tile(a, (3, 2, 5)).shape |
| 777 | assert_equal(c, (2, 0)) |
| 778 | assert_equal(d, (3, 2, 0)) |
| 779 | |
| 780 | def test_kroncompare(self): |
| 781 | from numpy.random import randint |
nothing calls this directly
no test coverage detected