Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Orthodox.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 2k
Category:
Game Server Simulator
Development Platform:
C/C++
- #ifndef CPPUNIT_ORTHODOX_H
- #define CPPUNIT_ORTHODOX_H
- #ifndef CPPUNIT_TESTCASE_H
- #include "TestCase.h"
- #endif
- /*
- * Orthodox performs a simple set of tests on an arbitary
- * class to make sure that it supports at least the
- * following operations:
- *
- * default construction - constructor
- * equality/inequality - operator== && operator!=
- * assignment - operator=
- * negation - operator!
- * safe passage - copy construction
- *
- * If operations for each of these are not declared
- * the template will not instantiate. If it does
- * instantiate, tests are performed to make sure
- * that the operations have correct semantics.
- *
- * Adding an orthodox test to a suite is very
- * easy:
- *
- * public: Test *suite () {
- * TestSuite *suiteOfTests = new TestSuite;
- * suiteOfTests->addTest (new ComplexNumberTest ("testAdd");
- * suiteOfTests->addTest (new TestCaller<Orthodox<Complex> > ());
- * return suiteOfTests;
- * }
- *
- * Templated test cases be very useful when you are want to
- * make sure that a group of classes have the same form.
- *
- * see TestSuite
- */
- template <class ClassUnderTest> class Orthodox : public TestCase
- {
- public:
- Orthodox () : TestCase ("Orthodox") {}
- protected:
- ClassUnderTest call (ClassUnderTest object);
- void runTest ();
- };
- // Run an orthodoxy test
- template <class ClassUnderTest> void Orthodox<ClassUnderTest>::runTest ()
- {
- // make sure we have a default constructor
- ClassUnderTest a, b, c;
- // make sure we have an equality operator
- assert (a == b);
- // check the inverse
- b.operator= (a.operator! ());
- assert (a != b);
- // double inversion
- b = !!a;
- assert (a == b);
- // invert again
- b = !a;
- // check calls
- c = a;
- assert (c == call (a));
- c = b;
- assert (c == call (b));
- }
- // Exercise a call
- template <class ClassUnderTest> ClassUnderTest Orthodox<ClassUnderTest>::call (ClassUnderTest object)
- {
- return object;
- }
- #endif