| 19 | using std::string; |
| 20 | |
| 21 | TEST_F(ModelFixture, WeatherFile) { |
| 22 | Model model; |
| 23 | EXPECT_FALSE(model.getOptionalUniqueModelObject<WeatherFile>()); |
| 24 | auto weatherFile = model.getUniqueModelObject<WeatherFile>(); |
| 25 | EXPECT_TRUE(model.getOptionalUniqueModelObject<WeatherFile>()); |
| 26 | EXPECT_FALSE(weatherFile.startDateActualYear()); |
| 27 | EXPECT_FALSE(weatherFile.startDayOfWeek()); |
| 28 | } |
| 29 | |
| 30 | TEST_F(ModelFixture, WeatherFile_assign_TMY) { |
| 31 |
nothing calls this directly
no test coverage detected