[KMTESTS]
[reactos.git] / kmtests / kmtest_drv / testlist.c
1 /*
2 * PROJECT: ReactOS kernel-mode tests
3 * LICENSE: GPLv2+ - See COPYING in the top level directory
4 * PURPOSE: Kernel-Mode Test Suite Driver test list
5 * PROGRAMMER: Thomas Faber <thfabba@gmx.de>
6 */
7
8 #include <ntddk.h>
9 #include <kmt_test.h>
10
11 KMT_TESTFUNC Test_Example;
12
13 const KMT_TEST TestList[] =
14 {
15 { "Example", Test_Example },
16 { NULL, NULL }
17 };