Lines Matching refs:CuTest
62 typedef struct CuTest CuTest; typedef
64 typedef void (*TestFunction)(CuTest *);
66 struct CuTest struct
76 void CuTestInit(CuTest* t, const char* name, TestFunction function); argument
77 CuTest* CuTestNew(const char* name, TestFunction function);
78 void CuTestRun(CuTest* tc);
79 void CuTestDelete(CuTest *t);
82 void CuFail_Line(CuTest* tc, const char* file, int line, const char* message2, const char* message);
83 void CuAssert_Line(CuTest* tc, const char* file, int line, const char* message, int condition);
84 void CuAssertStrEquals_LineMsg(CuTest* tc,
87 void CuAssertIntEquals_LineMsg(CuTest* tc,
90 void CuAssertDblEquals_LineMsg(CuTest* tc,
93 void CuAssertPtrEquals_LineMsg(CuTest* tc,
124 CuTest* list[MAX_TEST_CASES];
133 void CuSuiteAdd(CuSuite* testSuite, CuTest *testCase);