Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Not Evaluated
-
Resolution: Done
-
Affects Version/s: Qt Creator 4.0.0-beta1
-
Fix Version/s: Qt Creator 4.0.0-beta1
-
Component/s: Test Integration
-
Labels:None
Description
#include "gtest/gtest.h" TEST(Foo, Bar) { printf("Hello world\n"); } TEST(Foo, Baz) { EXPECT_TRUE(false); }
Output of failing Foo.Baz:
Foo.Baz Hello world foo.cpp:8: Failure Value of: false Actual: false Expected: true