1 /* $NetBSD: unit_test_sample.c,v 1.1.1.2 2014/07/12 11:58:01 spz Exp $ */
8 * T_testlist is a list of tests that are invoked.
10 testspec_t T_testlist
[] = {
11 { foo
, "sample test" },
17 static const char *test_desc
=
18 "this is an example test, for no actual module";
20 t_assert("sample", 1, T_REQUIRED
, test_desc
);
22 /* ... */ /* Test code would go here. */