Update contrib.
4 #include "cppunit/cppunit_proxy.h"
6 #if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)
13 class ModulusTest : public CPPUNIT_NS::TestCase
15 CPPUNIT_TEST_SUITE(ModulusTest);
16 CPPUNIT_TEST(modulus0);
17 CPPUNIT_TEST_SUITE_END();
23 CPPUNIT_TEST_SUITE_REGISTRATION(ModulusTest);
26 // tests implementation
28 void ModulusTest::modulus0()
30 int input1 [4] = { 6, 8, 10, 2 };
31 int input2 [4] = { 4, 2, 11, 3 };
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
36 CPPUNIT_ASSERT(output[0]==2);
37 CPPUNIT_ASSERT(output[1]==0);
38 CPPUNIT_ASSERT(output[2]==10);
39 CPPUNIT_ASSERT(output[3]==2);