mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-21 06:54:46 +00:00
34 lines
593 B
C
34 lines
593 B
C
/**
|
|
* @file testcases.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief header for test cases
|
|
* @details
|
|
* @version 0.11
|
|
* @date 2024-08-11
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
//////////////////////////////////////////////////
|
|
// Test cases //
|
|
//////////////////////////////////////////////////
|
|
|
|
BOOLEAN
|
|
TestCommandParser();
|
|
|
|
BOOLEAN
|
|
TestPeParser();
|
|
|
|
BOOLEAN
|
|
TestCodeViewRsdsParser();
|
|
|
|
BOOLEAN
|
|
TestSemanticScripts();
|
|
|
|
BOOLEAN
|
|
TestScriptEngineFloatingPoint();
|
|
|
|
BOOLEAN
|
|
TestScriptEngineVariableTypes();
|