Sets random seed to L so that results of randomString are predictable.
(long l)
| 13 | |
| 14 | /** Sets random seed to L so that results of randomString are predictable.*/ |
| 15 | public static void setSeed(long l) { |
| 16 | r = new Random(l); |
| 17 | } |
| 18 | |
| 19 | /** Returns the next random string of length LENGTH. */ |
| 20 | public static String randomString(int length) { |
no outgoing calls
no test coverage detected