mirror of https://github.com/acidanthera/audk.git
21 lines
512 B
C++
21 lines
512 B
C++
|
/** @file
|
||
|
Acts as the main entry point for the tests for the Dhcp6Dxe module.
|
||
|
|
||
|
Copyright (c) Microsoft Corporation
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
**/
|
||
|
#include <gtest/gtest.h>
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
// Run the tests
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
int
|
||
|
main (
|
||
|
int argc,
|
||
|
char *argv[]
|
||
|
)
|
||
|
{
|
||
|
testing::InitGoogleTest (&argc, argv);
|
||
|
return RUN_ALL_TESTS ();
|
||
|
}
|