(self)
| 485 | assert_array_almost_equal(actual, desired[0, 0], decimal=15) |
| 486 | |
| 487 | def test_randint(self): |
| 488 | rng = random.RandomState(self.seed) |
| 489 | actual = rng.randint(-99, 99, size=(3, 2)) |
| 490 | desired = np.array([[31, 3], |
| 491 | [-52, 41], |
| 492 | [-48, -66]]) |
| 493 | assert_array_equal(actual, desired) |
| 494 | |
| 495 | def test_random_integers(self): |
| 496 | rng = random.RandomState(self.seed) |
nothing calls this directly
no test coverage detected