* Add simplified header test for Identity Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
12 lines
236 B
C++
12 lines
236 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
testing::InitGoogleTest(&argc, argv);
|
|
auto r = RUN_ALL_TESTS();
|
|
return r;
|
|
}
|