-
Notifications
You must be signed in to change notification settings - Fork 76
Open
Description
I try to run a gtest project in gtest runner.but nothing happened.No logs and errors.
Is there any demo project can help?
main.cpp:
#include "stdafx.h"
#include "gtest\gtest.h"
#include "Test.h"
int main(int argc, _TCHAR* argv[])
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
Test.cpp:
#include "stdafx.h"
#include "Test.h"
TEST(Test, Success)
{
EXPECT_EQ(0, 0);
}
TEST(Test, Failure)
{
EXPECT_EQ(0, 2);
}
Metadata
Metadata
Assignees
Labels
No labels