Lines Matching defs:result
71 int result[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
73 unique_copy((int*)numbers, (int*)numbers + 8, (int*)result);
76 CPPUNIT_ASSERT(result[0]==0);
77 CPPUNIT_ASSERT(result[1]==1);
78 CPPUNIT_ASSERT(result[2]==2);
79 CPPUNIT_ASSERT(result[3]==3);
80 CPPUNIT_ASSERT(result[4]==4);
81 CPPUNIT_ASSERT(result[5]==0);
82 CPPUNIT_ASSERT(result[6]==0);
83 CPPUNIT_ASSERT(result[7]==0);