Skip to content

Test Case

Fedor Barannik edited this page May 23, 2017 · 3 revisions

Create

Creates a new Test Case.

Full hash

TODO: add the hash

Example

client = TMJ::Client.new
client.TestCase.create({ "projectKey": 'JQA', 
                         "name": 'Ensure the axial-flow pump is enabled' })

Update

Example

client = TMJ::Client.new
client.TestCase.update('JQA-T1234', {"name": "Ensure the axial-flow pump is enabled"})

Delete

Example

client = TMJ::Client.new
client.TestCase.delete('JQA-T1234')

Find

Example

client = TMJ::Client.new
client.TestCase.find('JQA-T1234')

Search

Example

client = TMJ::Client.new
client.TestCase.find('projectKey = "JQA"')

Add Attachment - TODO

Create New Test Result

Documentation

Process

  • [Contribution guide]
Clone this wiki locally