2004-01-15 00:07:17 +00:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LAM_SUPPORT_H
|
|
|
|
#define LAM_SUPPORT_H
|
|
|
|
|
|
|
|
void test_init(char *a);
|
2004-01-15 00:33:59 +00:00
|
|
|
void test_success(void);
|
|
|
|
void test_failure(char *a);
|
2004-02-11 21:12:00 +00:00
|
|
|
int test_verify_str(const char *expected_result, const char *test_result);
|
2004-01-27 20:11:48 +00:00
|
|
|
int test_verify_int(int expected_result, int test_result);
|
2004-01-15 00:59:26 +00:00
|
|
|
int test_finalize(void);
|
2004-01-15 00:07:17 +00:00
|
|
|
|
|
|
|
#endif /* LAM_SUPPORT_H */
|
|
|
|
|