Class: BTAP::Resources::Envelope::Materials::Fenestration::FenestrationTests
- Inherits:
-
Test::Unit::TestCase
- Object
- Test::Unit::TestCase
- BTAP::Resources::Envelope::Materials::Fenestration::FenestrationTests
- Defined in:
- lib/openstudio-standards/btap/envelope.rb
Instance Method Summary collapse
-
#test_create_blind ⇒ Object
This method will test the creation of blind.
-
#test_create_gas ⇒ Object
This method will test the creation of simple gas.
-
#test_create_screen ⇒ Object
This method will test the creation of screen.
-
#test_create_shade ⇒ Object
This method will test the creation of shade.
-
#test_create_simple_glazing ⇒ Object
This method will test the creation of simple glazing.
-
#test_create_standard_glazing ⇒ Object
This method will test the creation of standard glazing.
Instance Method Details
#test_create_blind ⇒ Object
This method will test the creation of blind
267 268 269 270 271 |
# File 'lib/openstudio-standards/btap/envelope.rb', line 267 def test_create_blind() model = OpenStudio::Model::Model.new() material = BTAP::Resources::Envelope::Materials::Fenestration::create_blind(model) assert( !(material.to_Blind.empty?)) end |
#test_create_gas ⇒ Object
This method will test the creation of simple gas
260 261 262 263 264 |
# File 'lib/openstudio-standards/btap/envelope.rb', line 260 def test_create_gas() model = OpenStudio::Model::Model.new() material = BTAP::Resources::Envelope::Materials::Fenestration::create_gas(model) assert( !(material.to_Gas.empty?)) end |
#test_create_screen ⇒ Object
This method will test the creation of screen
274 275 276 277 278 |
# File 'lib/openstudio-standards/btap/envelope.rb', line 274 def test_create_screen() model = OpenStudio::Model::Model.new() material = BTAP::Resources::Envelope::Materials::Fenestration::create_screen(model) assert( !(material.to_Screen.empty?)) end |
#test_create_shade ⇒ Object
This method will test the creation of shade
281 282 283 284 285 |
# File 'lib/openstudio-standards/btap/envelope.rb', line 281 def test_create_shade() model = OpenStudio::Model::Model.new() material = BTAP::Resources::Envelope::Materials::Fenestration::create_shade(model) assert( !(material.to_Shade.empty?)) end |
#test_create_simple_glazing ⇒ Object
This method will test the creation of simple glazing
246 247 248 249 250 |
# File 'lib/openstudio-standards/btap/envelope.rb', line 246 def test_create_simple_glazing() model = OpenStudio::Model::Model.new() material = BTAP::Resources::Envelope::Materials::Fenestration::create_simple_glazing(model) assert( !(material.to_SimpleGlazing.empty?)) end |
#test_create_standard_glazing ⇒ Object
This method will test the creation of standard glazing
253 254 255 256 257 |
# File 'lib/openstudio-standards/btap/envelope.rb', line 253 def test_create_standard_glazing() model = OpenStudio::Model::Model.new() material = BTAP::Resources::Envelope::Materials::Fenestration::create_standard_glazing(model) assert( !(material.to_StandardGlazing.empty?)) end |