Class: Test::Unit::TestCase::InternalData

Inherits:
Object
  • Object
show all
Defined in:
lib/test/unit/testcase.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeInternalData

Returns a new instance of InternalData.



919
920
921
922
923
924
925
926
# File 'lib/test/unit/testcase.rb', line 919

def initialize
  @start_time = nil
  @elapsed_time = nil
  @passed = true
  @interrupted = false
  @test_data_label = nil
  @test_data = nil
end

Instance Attribute Details

#elapsed_timeObject (readonly)

Returns the value of attribute elapsed_time.



917
918
919
# File 'lib/test/unit/testcase.rb', line 917

def elapsed_time
  @elapsed_time
end

#start_timeObject (readonly)

Returns the value of attribute start_time.



917
918
919
# File 'lib/test/unit/testcase.rb', line 917

def start_time
  @start_time
end

#test_dataObject (readonly)

Returns the value of attribute test_data.



918
919
920
# File 'lib/test/unit/testcase.rb', line 918

def test_data
  @test_data
end

#test_data_labelObject (readonly)

Returns the value of attribute test_data_label.



918
919
920
# File 'lib/test/unit/testcase.rb', line 918

def test_data_label
  @test_data_label
end

Instance Method Details

#assign_test_data(label, data) ⇒ Object



936
937
938
939
# File 'lib/test/unit/testcase.rb', line 936

def assign_test_data(label, data)
  @test_data_label = label
  @test_data = data
end

#have_test_data?Boolean

Returns:

  • (Boolean)


941
942
943
# File 'lib/test/unit/testcase.rb', line 941

def have_test_data?
  not @test_data_label.nil?
end

#interruptedObject



957
958
959
# File 'lib/test/unit/testcase.rb', line 957

def interrupted
  @interrupted = true
end

#interrupted?Boolean

Returns:

  • (Boolean)


932
933
934
# File 'lib/test/unit/testcase.rb', line 932

def interrupted?
  @interrupted
end

#passed?Boolean

Returns:

  • (Boolean)


928
929
930
# File 'lib/test/unit/testcase.rb', line 928

def passed?
  @passed
end

#problem_occurredObject



953
954
955
# File 'lib/test/unit/testcase.rb', line 953

def problem_occurred
  @passed = false
end

#test_finishedObject



949
950
951
# File 'lib/test/unit/testcase.rb', line 949

def test_finished
  @elapsed_time = Time.now - @start_time
end

#test_startedObject



945
946
947
# File 'lib/test/unit/testcase.rb', line 945

def test_started
  @start_time = Time.now
end