unit testing framework
This commit is contained in:
parent
bc8b32b3ec
commit
6fc804ffbb
13 changed files with 774 additions and 4 deletions
20
tests/example_unit_test.c
Normal file
20
tests/example_unit_test.c
Normal file
|
@ -0,0 +1,20 @@
|
|||
/* Unit tests are normal programs, so they can include C library. */
|
||||
#include <string.h>
|
||||
|
||||
/* All tests need to include test.h for GRUB testing framework. */
|
||||
#include <grub/test.h>
|
||||
|
||||
/* Unit test main method. */
|
||||
static void
|
||||
example_test (void)
|
||||
{
|
||||
/* Check if 1st argument is true and report with default error message. */
|
||||
grub_test_assert (1 == 1);
|
||||
|
||||
/* Check if 1st argument is true and report with custom error message. */
|
||||
grub_test_assert (2 == 2, "2 equal 2 expected");
|
||||
grub_test_assert (2 == 3, "2 is not equal to %d", 3);
|
||||
}
|
||||
|
||||
/* Register example_test method as a unit test. */
|
||||
GRUB_UNIT_TEST ("example_unit_test", example_test);
|
Loading…
Add table
Add a link
Reference in a new issue