Skip to content

Commit

Permalink
update *_test.rb class names
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewSteen committed Jun 28, 2024
1 parent 66dd968 commit 2bc22d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions measures/gbxml_import/tests/gbxml_import_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
require_relative '../measure.rb'
require 'fileutils'

class ImportGbxml_Test < MiniTest::Unit::TestCase
class GbxmlImport_Test < MiniTest::Unit::TestCase

# def setup
# end
Expand All @@ -15,7 +15,7 @@ class ImportGbxml_Test < MiniTest::Unit::TestCase
def test_import
# create a test model
model = OpenStudio::Model::Model.new

# create an instance of the measure
measure = ImportGbxml.new

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
require_relative '../resources/os_lib_adv_import'
require 'fileutils'

class AdvancedImportGbxml_Test < Minitest::Test
class GbxmlImportAdvanced_Test < Minitest::Test

def test_generic_gbxml

Expand Down Expand Up @@ -345,7 +345,7 @@ def test_annual_schedule
# If the argument has a default that you want to use, you don't need it in the hash
args_hash = {}
args_hash['gbxml_file_name'] = path.to_s

# populate argument with specified hash value if specified
arguments.each do |arg|
temp_arg_var = arg.clone
Expand Down Expand Up @@ -375,7 +375,7 @@ def test_annual_schedule
puts sch.defaultDaySchedule
puts sch.summerDesignDaySchedule
puts sch.winterDesignDaySchedule
sch.scheduleRules.each { |rule| puts rule}
sch.scheduleRules.each { |rule| puts rule}
end

def data_fields_equal?(obj1, obj2)
Expand Down

0 comments on commit 2bc22d4

Please sign in to comment.