00001 #ifndef CPPUNIT_EXTENSIONS_ORTHODOX_H
00002 #define CPPUNIT_EXTENSIONS_ORTHODOX_H
00003
00004 #include <cppunit/TestCase.h>
00005
00006 CPPUNIT_NS_BEGIN
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
00042 template <class ClassUnderTest> class Orthodox : public TestCase
00043 {
00044 public:
00045 Orthodox () : TestCase ("Orthodox") {}
00046
00047 protected:
00048 ClassUnderTest call (ClassUnderTest object);
00049 void runTest ();
00050
00051
00052 };
00053
00054
00055
00056 template <class ClassUnderTest> void Orthodox<ClassUnderTest>::runTest ()
00057 {
00058
00059 ClassUnderTest a, b, c;
00060
00061
00062 CPPUNIT_ASSERT (a == b);
00063
00064
00065 b.operator= (a.operator! ());
00066 CPPUNIT_ASSERT (a != b);
00067
00068
00069 b = !!a;
00070 CPPUNIT_ASSERT (a == b);
00071
00072
00073 b = !a;
00074
00075
00076 c = a;
00077 CPPUNIT_ASSERT (c == call (a));
00078
00079 c = b;
00080 CPPUNIT_ASSERT (c == call (b));
00081
00082 }
00083
00084
00085
00086 template <class ClassUnderTest>
00087 ClassUnderTest Orthodox<ClassUnderTest>::call (ClassUnderTest object)
00088 {
00089 return object;
00090 }
00091
00092
00093 CPPUNIT_NS_END
00094
00095 #endif