00001 /* -*- Mode:C++ -*- */ 00014 #include "AutoTest.hh" 00015 #include "AutoTestTest.hh" 00016 00017 // normally this would go into the same file as the definition of the 00018 // tests (i.e., xxxTest.cc). Here we just reuse the StackTest tests. 00019 00020 namespace { 00021 // I could be more elite than this I think... 00022 00023 // remember, the names can be much simpler than this because of the 00024 // namespace (make the declarations file local) 00025 00026 ccunit::registerTest<StackTest> my_stackTests; 00027 ccunit::registerTest<ComplexTest> my_complexTests; 00028 ccunit::registerTest<VoidTest> my_voidTests; 00029 } 00030