diff -r 000000000000 -r 31a43d94cc26 test/TestUtils.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/TestUtils.h Sun Sep 20 15:14:12 2009 -0700 @@ -0,0 +1,37 @@ +/* + * TestUtils.h + * Ottoman + * + * Created by Jens Alfke on 9/2/09. + * Copyright 2009 Jens Alfke. All rights reserved. + * BSD-Licensed: See the file "LICENSE.txt" for details. + */ + +#include // Get gtest from +#include +#include "Base.h" + +namespace Mooseyard { + + std::ostream& operator<< (std::ostream &out, const Blob&); + + void shuffle(int a[], int n, unsigned seed =0); + + extern char **sWords; + extern int sNWords; + + void readWords(); + + class Timer { + public: + Timer (const char *operation, int divisor =1); + ~Timer(); + double elapsed() {return now() - _time;} + static double now(); + private: + const char *_operation; + int _divisor; + double _cpuTime, _time; + }; + +}