Class: PlatformAPI::TestNode

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

A single test node belonging to a test run

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ TestNode

Returns a new instance of TestNode.



3443
3444
3445
# File 'lib/platform-api/client.rb', line 3443

def initialize(client)
  @client = client
end

Instance Method Details

#list(test_run_id) ⇒ Object

List test nodes

Parameters:

  • test_run_id:

    unique identifier of a test run



3450
3451
3452
# File 'lib/platform-api/client.rb', line 3450

def list(test_run_id)
  @client.test_node.list(test_run_id)
end