TestOps TestNG

Katalon TestOps SDK

License

License

Categories

Categories

TestNG Unit Testing
GroupId

GroupId

com.katalon
ArtifactId

ArtifactId

testops-testng
Last Version

Last Version

1.1.3
Release Date

Release Date

Type

Type

jar
Description

Description

TestOps TestNG
Katalon TestOps SDK
Project URL

Project URL

https://github.com/katalon-studio/testops-testng
Project Organization

Project Organization

Katalon, LLC.
Source Code Management

Source Code Management

https://github.com/katalon-studio/testops-testng

Download testops-testng

How to add to project

<!-- https://jarcasting.com/artifacts/com.katalon/testops-testng/ -->
<dependency>
    <groupId>com.katalon</groupId>
    <artifactId>testops-testng</artifactId>
    <version>1.1.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.katalon/testops-testng/
implementation 'com.katalon:testops-testng:1.1.3'
// https://jarcasting.com/artifacts/com.katalon/testops-testng/
implementation ("com.katalon:testops-testng:1.1.3")
'com.katalon:testops-testng:jar:1.1.3'
<dependency org="com.katalon" name="testops-testng" rev="1.1.3">
  <artifact name="testops-testng" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.katalon', module='testops-testng', version='1.1.3')
)
libraryDependencies += "com.katalon" % "testops-testng" % "1.1.3"
[com.katalon/testops-testng "1.1.3"]

Dependencies

compile (4)

Group / Artifact Type Version
org.slf4j : slf4j-api jar 1.7.30
org.slf4j : slf4j-simple jar 1.7.30
org.testng : testng jar 7.3.0
com.katalon : testops-commons jar 1.1.6

Project Modules

There are no modules declared in this project.

Katalon TestOps TestNG

This is the TestNG Reporter for submitting test results to Katalon TestOps.

Usage

It is recommended to follow instructions in Katalon TestOps Project page.

Installation

Add the dependency to pom.xml:

<dependency>
    <groupId>com.katalon</groupId>
    <artifactId>testops-testng</artifactId>
    <version>1.1.2</version>
</dependency>

Configuration

Configurations will be read from environment variables, Java system properties, and properties file in this order.

  • testops.server-url (environment variable: TESTOPS_SERVER_URL)

Katalon TestOps endpoint (default: https://testops.katalon.io).

  • testops.api-key (environment variable: TESTOPS_API_KEY)

Your Katalon TestOps API Key.

  • testops.project-id (environment variable: TESTOPS_PROJECT_ID)

The Katalon TestOps project that will receive the test results.

Via environment variables

  • Linux
export TESTOPS_SERVER_URL=https://testops.katalon.io
export TESTOPS_API_KEY=<your API key>
export TESTOPS_PROJECT_ID=<your project ID>
mvn test
  • Windows
set TESTOPS_SERVER_URL=https://testops.katalon.io
set TESTOPS_API_KEY=<your API key>
set TESTOPS_PROJECT_ID=<your project ID>
mvn test

Via Java system properties

mvn test -Dtestops.serverUrl=https://testops.katalon.io -Dtestops.api-key=<your API key> -Dtestops.project-id=<your project ID>

Via properties file

Create a testops.properties file in the resources directory

testops.server-url=htts://testops.katalon.io
testops.api-key=
testops.project-id=

Run the command:

mvn test

Samples

https://github.com/katalon-studio-samples/testops-testng-sample

com.katalon

Katalon Studio

Katalon Studio: Best automated testing tool for Web, Mobile, & API testing. NOTE: Sample projects have been moved to https://github.com/katalon-studio-samples.

Versions

Version
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0