1 | /** @file
|
---|
2 | Acts as the main entry point for the tests for the UefiPxeBcDxe module.
|
---|
3 | Copyright (c) Microsoft Corporation
|
---|
4 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
5 | **/
|
---|
6 | #include <gtest/gtest.h>
|
---|
7 |
|
---|
8 | ////////////////////////////////////////////////////////////////////////////////
|
---|
9 | // Run the tests
|
---|
10 | ////////////////////////////////////////////////////////////////////////////////
|
---|
11 | int
|
---|
12 | main (
|
---|
13 | int argc,
|
---|
14 | char *argv[]
|
---|
15 | )
|
---|
16 | {
|
---|
17 | testing::InitGoogleTest (&argc, argv);
|
---|
18 | return RUN_ALL_TESTS ();
|
---|
19 | }
|
---|