6
votes
Simulating “faster time” in linux
One approach that works best for unit testing is to abstract the way the current time is accessed in your code.
Instead of calling System.currentTimeMillis() directly you can provide your o …
2
votes
How can I get rid of the warning with rand()? (C++)
To get rid of the warning you should use a static cast to an unsigned integer.
srand(static_cast<unsigned int>(time(0)));
On a related note, the results of r …
