tests: Added Platform::createDefaultViewFactory test

This commit is contained in:
Sergio Martins
2022-06-26 00:23:06 +01:00
parent 0024ed54c8
commit 820161ba29

View File

@@ -27,3 +27,9 @@ TEST_CASE("Platform::name")
auto plat = Platform::instance();
CHECK(!std::string(plat->name()).empty());
}
TEST_CASE("Platform::createDefaultViewFactory")
{
auto plat = Platform::instance();
REQUIRE(plat->createDefaultViewFactory());
}