class Inferno::Entities::TestSession

A `TestSession` represents an individual testing session.

@attr_accessor [String] id id of the session @attr_accessor [Time] created_at creation timestamp @attr_accessor [Time] updated_at update timestamp @attr_accessor [String] test_suite_id id of the `TestSuite` being run in

this session

@attr_accessor [Inferno::Entities::TestSuite] test_suite the `TestSuite` being run in

this session

@attr_accessor [Array<Inferno::Entities::TestRun>] test_runs the `TestRuns`

associated with this session

@attr_accessor [Array<Inferno::Entities::TestResult>] results the

`TestResults` associated with this session

Constants

ATTRIBUTES

Public Class Methods

new(params) click to toggle source
Calls superclass method Inferno::Entities::Entity::new
# File lib/inferno/entities/test_session.rb, line 21
def initialize(params)
  super(params, ATTRIBUTES)
end