From 8b2878e6595e40d2a37bb9983274ccb5827a9192 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 21 Nov 2006 19:52:12 +0000 Subject: Hash uses real exceptions now, and has a clear() function. --- src/tests/hash.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/tests') diff --git a/src/tests/hash.cpp b/src/tests/hash.cpp index a7f0a57..58e0112 100644 --- a/src/tests/hash.cpp +++ b/src/tests/hash.cpp @@ -78,6 +78,7 @@ int main() printf("%d: %s\n", (*j).second, (*j).first.c_str() ); } + printf("Testing\n-------------------\n\n"); for( int j = 0; j < 33; j++ ) { if( sTest.has(names[j]) ) @@ -95,5 +96,16 @@ int main() printf("Missing element %d, '%s'\n", j, names[j] ); } } + + printf("Clearing\n-------------------\n\n"); + + sTest.clear(); + + for( Hash::iterator i = sTest.begin(); + i != sTest.end(); i++ ) + { + Hash::iterator j = i; + printf("%d: %s\n", (*j).second, (*j).first.c_str() ); + } } -- cgit v1.2.3