ASSERT_TRUE(runner.Run());
application_x* app = GetSingleApp(runner.GetManifest());
ASSERT_NE(app, nullptr);
- ASSERT_CSTR_EQ(app->ambient_support, "false");
+ ASSERT_CSTR_EQ(app->support_ambient, "false");
}
TEST_F(ManifestTest, WatchApplicationElement_AmbientSupport_False) {
ASSERT_TRUE(runner.Run());
application_x* app = GetSingleApp(runner.GetManifest());
ASSERT_NE(app, nullptr);
- ASSERT_CSTR_EQ(app->ambient_support, "false");
+ ASSERT_CSTR_EQ(app->support_ambient, "false");
}
ASSERT_TRUE(runner.Run());
application_x* app = GetSingleApp(runner.GetManifest());
ASSERT_NE(app, nullptr);
- ASSERT_CSTR_EQ(app->ambient_support, "true");
+ ASSERT_CSTR_EQ(app->support_ambient, "true");
}
TEST_F(ManifestTest, WatchApplicationElement_AmbientSupport_Invalid) {