123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #include "a2functional.h"
- #include <string>
- #include <numeric>
- #include <cppunit/extensions/HelperMacros.h>
- using namespace std;
- class a2functionalTest:public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE(a2functionalTest);
- CPPUNIT_TEST(testMemFunSh);
- CPPUNIT_TEST(testAdopt2nd);
- CPPUNIT_TEST(testArrayLength);
- CPPUNIT_TEST_SUITE_END();
- public:
- void testMemFunSh();
- void testAdopt2nd();
- void testArrayLength();
- class Greeting {
- public:
- virtual ~Greeting() {}
- virtual string sayGreeting() = 0;
- virtual string sayGreetingConst() const = 0;
- };
- typedef SharedHandle<Greeting> GreetingHandle;
- class JapaneseGreeting:public Greeting
- {
- virtual string sayGreeting()
- {
- return "HAROO WAARUDO";
- }
- virtual string sayGreetingConst() const
- {
- return "HAROO WAARUDO";
- }
- };
- };
- CPPUNIT_TEST_SUITE_REGISTRATION(a2functionalTest);
- void a2functionalTest::testMemFunSh()
- {
- GreetingHandle greeting = new JapaneseGreeting();
- CPPUNIT_ASSERT_EQUAL(string("HAROO WAARUDO"), mem_fun_sh(&Greeting::sayGreeting)(greeting));
- CPPUNIT_ASSERT_EQUAL(string("HAROO WAARUDO"), mem_fun_sh(&Greeting::sayGreetingConst)(greeting));
- }
- void a2functionalTest::testAdopt2nd()
- {
- GreetingHandle greeting = new JapaneseGreeting();
- CPPUNIT_ASSERT_EQUAL(string("A Japanese said:HAROO WAARUDO"),
- adopt2nd(plus<string>(), mem_fun_sh(&Greeting::sayGreeting))("A Japanese said:", greeting));
- }
- void a2functionalTest::testArrayLength()
- {
- int64_t ia[] = { 1, 2, 3, 4, 5 };
- int64_t zeroLengthArray[] = {};
- CPPUNIT_ASSERT_EQUAL((size_t)5, arrayLength(ia));
- CPPUNIT_ASSERT_EQUAL((size_t)0, arrayLength(zeroLengthArray));
- }
|