Class: JunitModel::TestCase

Inherits:
OpenStruct
  • Object
show all
Defined in:
lib/junit_model/models.rb

Overview

A TestCase is the atomic unit of a Junit file

Instance Method Summary collapse

Instance Method Details

#passed?Boolean

Returns:

  • (Boolean)


62
63
64
# File 'lib/junit_model/models.rb', line 62

def passed?
  failure.nil?
end