Files
hfiref0x 8bf8ed1add 2.1.1
Change "Type" object access flags decoding
Internal rearrange
2026-05-24 23:37:12 +07:00

37 lines
888 B
C

/*******************************************************************************
*
* (C) COPYRIGHT AUTHORS, 2015 - 2026
*
* TITLE: TESTUNIT.H
*
* VERSION: 2.11
*
* DATE: 22 May 2026
*
* Common header file for test code.
*
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
* TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
* PARTICULAR PURPOSE.
*
*******************************************************************************/
#pragma once
#include "tests/uitest.h"
VOID TestStart(VOID);
VOID TestStop(VOID);
VOID TestException(_In_ BOOL bNaked);
HANDLE TestGetPortHandle();
#ifdef _DEBUG
#define BeginTests() TestStart()
#define EndTests() TestStop()
#define BeginUITests() TestUI()
#else
#define BeginTests()
#define EndTests()
#define BeginUITests()
#endif