| 45 | using DefaultResourceTest = GlslangTest<::testing::Test>; |
| 46 | |
| 47 | TEST_F(DefaultResourceTest, FromFile) |
| 48 | { |
| 49 | const std::string path = GlobalTestSettings.testRoot + "/baseResults/test.conf"; |
| 50 | std::string expectedConfig; |
| 51 | tryLoadFile(path, "expected resource limit", &expectedConfig); |
| 52 | const std::string realConfig = GetDefaultTBuiltInResourceString(); |
| 53 | ASSERT_EQ(expectedConfig, realConfig); |
| 54 | } |
| 55 | |
| 56 | TEST_F(DefaultResourceTest, UnrecognizedLimit) |
| 57 | { |
nothing calls this directly
no test coverage detected