Example #1
0
File: 00.c Project: windha/test
int main()
{
    int i = 0;
    for(i=1; i < 12; ++i){
        printf("%d\n",testfunction());
    }

}
Example #2
0
TEST(sample_test_case, sample_test)
{
    EXPECT_EQ(1, 1);
    EXPECT_EQ(testfunction(), 42);
}
Example #3
0
int main ()
{
  if (testfunction(0) != 0) 
    abort ();
  return 0;
}