Home | History | Annotate | Download | only in googletest

Lines Matching refs:Random

235     "Random number seed to use when shuffling test orders.  Must be in range "
270 // Generates a random number from [0, range), using a Linear
273 UInt32 Random::Generate(UInt32 range) {
2429 void TestCase::ShuffleTests(internal::Random* random) {
2430 Shuffle(random, &test_indices_);
3684 // Returns the random seed used at the start of the current test run.
3973 random()->Reseed(random_seed_);
4025 // Picks a new random seed for each iteration.
4245 ShuffleRange(random(), 0, last_death_test_case_ + 1, &test_case_indices_);
4248 ShuffleRange(random(), last_death_test_case_ + 1,
4253 test_cases_[i]->ShuffleTests(random());
4511 " Random number seed to use for shuffling test orders (between 1 and\n"