class PlatformAPI::TestCase

A single test case belonging to a test run

Public Class Methods

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

Public Instance Methods

list(test_run_id) click to toggle source

List test cases

@param test_run_id: unique identifier of a test run

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