whoshuu / testrail

TestRail api in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

testrail

testrail is a Go client library for accessing the TestRail API

travis-ci: Build Status

GoDoc: GoDoc

Test Coverage: 9.52%

References

https://godoc.org/github.com/educlos/testrail

Example usage

  package main

  import "github.com/educlos/testrail"

  func main(){

    username := os.Getenv("TESTRAIL_USERNAME")
    password := os.Getenv("TESTRAIL_TOKEN")

    client := testrail.NewClient("https://example.testrail.com", username, password)

    projectID := 1
    suiteID := 11
    cases, err := client.GetCases(projectID, suiteID)

    for _, c := range cases{
      fmt.Println(c.ID)
    }
  }

License

MIT

About

TestRail api in Go

License:MIT License


Languages

Language:Go 100.0%