Update unit tests to use GoogleTestLib.h instead of gtest.h so the edk2 extensions for google tests are always available. Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
20 lines
524 B
C++
20 lines
524 B
C++
/** @file
|
|
Acts as the main entry point for the tests for the UefiPxeBcDxe module.
|
|
Copyright (c) Microsoft Corporation
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
#include <Library/GoogleTestLib.h>
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Run the tests
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
int
|
|
main (
|
|
int argc,
|
|
char *argv[]
|
|
)
|
|
{
|
|
testing::InitGoogleTest (&argc, argv);
|
|
return RUN_ALL_TESTS ();
|
|
}
|