Class: BTAP::Resources::Envelope::Materials::Fenestration::FenestrationTests

Inherits:
Test::Unit::TestCase
  • Object
show all
Defined in:
lib/openstudio-standards/btap/envelope.rb

Instance Method Summary collapse

Instance Method Details

#test_create_blindObject

This method will test the creation of blind

Author:



281
282
283
284
285
# File 'lib/openstudio-standards/btap/envelope.rb', line 281

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_gasObject

This method will test the creation of simple gas

Author:



273
274
275
276
277
# File 'lib/openstudio-standards/btap/envelope.rb', line 273

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_screenObject

This method will test the creation of screen

Author:



289
290
291
292
293
# File 'lib/openstudio-standards/btap/envelope.rb', line 289

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_shadeObject

This method will test the creation of shade

Author:



297
298
299
300
301
# File 'lib/openstudio-standards/btap/envelope.rb', line 297

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_glazingObject

This method will test the creation of simple glazing

Author:



257
258
259
260
261
# File 'lib/openstudio-standards/btap/envelope.rb', line 257

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_glazingObject

This method will test the creation of standard glazing

Author:



265
266
267
268
269
# File 'lib/openstudio-standards/btap/envelope.rb', line 265

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