mirror of
https://github.com/tianocore/edk2.git
synced 2025-08-26 22:07:55 +00:00

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>
21 lines
520 B
C++
21 lines
520 B
C++
/** @file
|
|
Acts as the main entry point for the tests for the Ip6Dxe 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 ();
|
|
}
|