class PlatformAPI::TestNode

A single test node belonging to a test run

Public Class Methods

new(client) click to toggle source
# File lib/platform-api/client.rb, line 3510
def initialize(client)
  @client = client
end

Public Instance Methods

list(test_run_id) click to toggle source

List test nodes

@param test_run_id: unique identifier of a test run

# File lib/platform-api/client.rb, line 3517
def list(test_run_id)
  @client.test_node.list(test_run_id)
end