mirror of
https://github.com/Microsoft/Detours
synced 2026-06-08 11:44:51 +00:00
2de2babb25
- Import the Catch2 self-contained C++ test framework. It's used by many Microsoft OSS projects: - https://github.com/microsoft/cppwinrt/tree/master/test - https://github.com/microsoft/wil/tree/master/tests As well as many OSS projects in general. When the CMake PR is merged, we can remove this as a checked in development dependency, and can instead download it using CMake. - Start basic set of unit tests to validate failure modes of - Hook the execution into the existing NMake build system. - Hook test execution into CI pipeline
11 lines
297 B
C++
11 lines
297 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Unit Test Main (main.cpp of unittests.exe)
|
|
//
|
|
// Microsoft Research Detours Package
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
#define CATCH_CONFIG_MAIN
|
|
#include "catch.hpp"
|