| 22 | using namespace openstudio::model; |
| 23 | |
| 24 | TEST_F(ModelFixture, BuildingStory_NominalZCoordinate) { |
| 25 | Model model; |
| 26 | BuildingStory buildingStory(model); |
| 27 | |
| 28 | double value(1.0); |
| 29 | buildingStory.setNominalZCoordinate(value); |
| 30 | boost::optional<double> result = buildingStory.nominalZCoordinate(); |
| 31 | ASSERT_TRUE(result.is_initialized()); |
| 32 | EXPECT_NEAR(value, result.get(), 1.0E-8); |
| 33 | } |
| 34 | |
| 35 | TEST_F(ModelFixture, BuildingStory_NominalFloortoFloorHeight) { |
| 36 | Model model; |
nothing calls this directly
no test coverage detected