diff options
author | David <david@xagasoft.com> | 2007-06-15 18:54:59 +0000 |
---|---|---|
committer | David <david@xagasoft.com> | 2007-06-15 18:54:59 +0000 |
commit | 2b90449c30e4a420af4fff7e58588611d71f61fc (patch) | |
tree | d4d7ac5b12c236bf98d1f2275d6b9545e9ba8fd3 /src/unit/hash.cpp | |
parent | 9f98bc834ce2ac524c47ef633be4b4fb9eb8a079 (diff) | |
download | libbu++-2b90449c30e4a420af4fff7e58588611d71f61fc.tar.gz libbu++-2b90449c30e4a420af4fff7e58588611d71f61fc.tar.bz2 libbu++-2b90449c30e4a420af4fff7e58588611d71f61fc.tar.xz libbu++-2b90449c30e4a420af4fff7e58588611d71f61fc.zip |
david - wrote two silly unit tests...
Diffstat (limited to 'src/unit/hash.cpp')
-rw-r--r-- | src/unit/hash.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/unit/hash.cpp b/src/unit/hash.cpp new file mode 100644 index 0000000..588e687 --- /dev/null +++ b/src/unit/hash.cpp | |||
@@ -0,0 +1,40 @@ | |||
1 | #include "bu/fstring.h" | ||
2 | #include "bu/hash.h" | ||
3 | #include "unitsuite.h" | ||
4 | |||
5 | #include <stdio.h> | ||
6 | |||
7 | class Unit : public Bu::UnitSuite | ||
8 | { | ||
9 | private: | ||
10 | typedef Bu::Hash<Bu::FString, int> StrIntHash; | ||
11 | public: | ||
12 | Unit() | ||
13 | { | ||
14 | setName("Hash"); | ||
15 | addTest( Unit::test_probe ); | ||
16 | } | ||
17 | |||
18 | virtual ~Unit() | ||
19 | { | ||
20 | } | ||
21 | |||
22 | void test_probe() | ||
23 | { | ||
24 | StrIntHash h; | ||
25 | char buf[20]; | ||
26 | for(int i=0;i<10000;i++) | ||
27 | { | ||
28 | sprintf(buf,"%d",i); | ||
29 | Bu::FString sTmp(buf); | ||
30 | h[sTmp] = i; | ||
31 | unitTest( h.has(sTmp) ); | ||
32 | } | ||
33 | } | ||
34 | }; | ||
35 | |||
36 | int main( int argc, char *argv[] ) | ||
37 | { | ||
38 | return Unit().run( argc, argv ); | ||
39 | } | ||
40 | |||