00001 #ifndef CPPUNIT_EXTENSIONS_ORTHODOX_H
00002 #define CPPUNIT_EXTENSIONS_ORTHODOX_H
00003
00004 #include <cppunit/TestCase.h>
00005
00006 namespace CppUnit {
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 template <typename ClassUnderTest> class Orthodox : public TestCase
00042 {
00043 public:
00044 Orthodox () : TestCase ("Orthodox") {}
00045
00046 protected:
00047 ClassUnderTest call (ClassUnderTest object);
00048 void runTest ();
00049
00050
00051 };
00052
00053
00054
00055 template <typename ClassUnderTest> void Orthodox<ClassUnderTest>::runTest ()
00056 {
00057
00058 ClassUnderTest a, b, c;
00059
00060
00061 CPPUNIT_ASSERT (a == b);
00062
00063
00064 b.operator= (a.operator! ());
00065 CPPUNIT_ASSERT (a != b);
00066
00067
00068 b = !!a;
00069 CPPUNIT_ASSERT (a == b);
00070
00071
00072 b = !a;
00073
00074
00075 c = a;
00076 CPPUNIT_ASSERT (c == call (a));
00077
00078 c = b;
00079 CPPUNIT_ASSERT (c == call (b));
00080
00081 }
00082
00083
00084
00085 template <typename ClassUnderTest>
00086 ClassUnderTest Orthodox<ClassUnderTest>::call (ClassUnderTest object)
00087 {
00088 return object;
00089 }
00090
00091 }
00092
00093 #endif