We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55effde commit bdbe6bcCopy full SHA for bdbe6bc
test/engine/engine_test.cpp
@@ -260,15 +260,15 @@ TEST(EngineTest, CompileAndExecuteMonitors)
260
engine.updateMonitors();
261
262
// Change the monitor values
263
- /*testing::internal::CaptureStdout();
+ testing::internal::CaptureStdout();
264
EXPECT_CALL(iface1, onValueChanged);
265
m1->changeValue(0);
266
ASSERT_EQ(testing::internal::GetCapturedStdout(), "change 1!\n");
267
268
testing::internal::CaptureStdout();
269
EXPECT_CALL(iface2, onValueChanged);
270
m2->changeValue(0);
271
- ASSERT_EQ(testing::internal::GetCapturedStdout(), "change 2!\n");*/
+ ASSERT_EQ(testing::internal::GetCapturedStdout(), "change 2!\n");
272
273
ScratchConfiguration::removeExtension(extension);
274
}
0 commit comments