[ROSTESTS]
[reactos.git] / rostests / kmtests / ntos_io / IoDeviceObject_user.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 Object test user-mode part
5 * PROGRAMMER: Thomas Faber <thfabba@gmx.de>
6 */
7
8 #include <kmt_test.h>
9
10 START_TEST(IoDeviceObject)
11 {
12 /* make sure IoHelper has an existing service key, but is not started */
13 KmtLoadDriver(L"IoHelper", FALSE);
14 KmtUnloadDriver();
15
16 KmtLoadDriver(L"IoDeviceObject", TRUE);
17 KmtOpenDriver();
18 KmtCloseDriver();
19 KmtUnloadDriver();
20 }