blob: 825e7b106a986c5c4b0d6249f6c9d42ec5d39751 [file] [log] [blame]
Brian Silverman33d0d6e2016-05-15 23:33:39 -07001#ifndef AOS_TESTING_RANDOM_SEED_H_
2#define AOS_TESTING_RANDOM_SEED_H_
3
4namespace aos {
5namespace testing {
6
7// Returns the random seed to use for testing.
8//
9// This is ${TEST_RANDOM_SEED} if it is set or 1.
10int RandomSeed();
11
12} // namespace testing
13} // namespace aos
14
15#endif // AOS_TESTING_RANDOM_SEED_H_