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.



767
768
769
770
771
772
773
774
# File 'lib/test/unit/testcase.rb', line 767

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.



765
766
767
# File 'lib/test/unit/testcase.rb', line 765

def elapsed_time
  @elapsed_time
end

#start_timeObject (readonly)

Returns the value of attribute start_time.



765
766
767
# File 'lib/test/unit/testcase.rb', line 765

def start_time
  @start_time
end

#test_dataObject (readonly)

Returns the value of attribute test_data.



766
767
768
# File 'lib/test/unit/testcase.rb', line 766

def test_data
  @test_data
end

#test_data_labelObject (readonly)

Returns the value of attribute test_data_label.



766
767
768
# File 'lib/test/unit/testcase.rb', line 766

def test_data_label
  @test_data_label
end

Instance Method Details

#assign_test_data(label, data) ⇒ Object



784
785
786
787
# File 'lib/test/unit/testcase.rb', line 784

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

#have_test_data?Boolean

Returns:

  • (Boolean)


789
790
791
# File 'lib/test/unit/testcase.rb', line 789

def have_test_data?
  not @test_data_label.nil?
end

#interruptedObject



805
806
807
# File 'lib/test/unit/testcase.rb', line 805

def interrupted
  @interrupted = true
end

#interrupted?Boolean

Returns:

  • (Boolean)


780
781
782
# File 'lib/test/unit/testcase.rb', line 780

def interrupted?
  @interrupted
end

#passed?Boolean

Returns:

  • (Boolean)


776
777
778
# File 'lib/test/unit/testcase.rb', line 776

def passed?
  @passed
end

#problem_occurredObject



801
802
803
# File 'lib/test/unit/testcase.rb', line 801

def problem_occurred
  @passed = false
end

#test_finishedObject



797
798
799
# File 'lib/test/unit/testcase.rb', line 797

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

#test_startedObject



793
794
795
# File 'lib/test/unit/testcase.rb', line 793

def test_started
  @start_time = Time.now
end