Skip to content

RSheremeta/testrail-testng

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TestRail-TestNG

This Library helps you to integrate your TestNG-based tests with TestRail in an easily manner.

Installation

1 Since it's not pushed to the MVN central repository yet, there are two installation options:

  • Download already compiled and packaged TestRail-TestNG-1.0.jar file HERE and proceed to the 2nd step
  • Download source code HERE to your local machine, make a jar by running mvn package in the repo directory and proceed to the 2nd step

2 Put a TestRail-TestNG-1.0.jar file into your project directory (for instance – create root dir ~/libs/ and paste there)

3 Add this dependency to your pom.xml (systemPath value is for instance)

    <dependency>
      <groupId>com.github.rsheremeta</groupId>
      <artifactId>TestRail-TestNG</artifactId>
      <version>1.0</version>
      <scope>system</scope>
      <systemPath>${basedir}/libs/TestRail-TestNG-1.0.jar</systemPath>
    </dependency>

Usage

  1. See my article on Medium – Link

Medium article