From 190d7085246390755c399bcf6b1239ed1ee17cb0 Mon Sep 17 00:00:00 2001 From: Peter Thomas Date: Sun, 12 Mar 2017 08:25:59 +0530 Subject: [PATCH] fix doc miss on testng name change --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 70886ca9a..7635c7f53 100755 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ And you don't need to create Java objects (or POJO-s) for any of the payloads th | [`status`](#status) | [`soap action`](#soap) | [`configure`](#configure) **Secondary HTTP Keywords** | [`param`](#param) | [`header`](#header) | [`cookie`](#cookie) | [`form field`](#form-field) | [`multipart field`](#multipart-field) | [`multipart entity`](#multipart-entity) -**Get, Set, Match** | [`get`](#get) / [`set`](#set) | [`match ==`](#match) | [`contains`](#match-contains) / [`only`](#match-contains-only) | `match` [`each`](#match-each) +**Get, Set, Match** | [`get`](#get) / [`set`](#set) | [`match ==`](#match) | [`contains`](#match-contains) / [`only`](#match-contains-only) | [`match each`](#match-each) **Special Variables** | [`response`](#response) / [`cookies`](#cookies) | [`responseHeaders`](#responseheaders) | [`responseStatus`](#responsestatus) | [`responseTime`](#responsetime) **Code Re-Use** | [`call`](#call) | [Calling `*.feature` files](#calling-other-feature-files) | [Calling JS Functions](#calling-javascript-functions) | [JS `karate` object](#the-karate-object) **Tips / Examples** | [Embedded Expressions](#embedded-expressions) | [GraphQL RegEx Example](#graphql--regex-replacement-example) | [Multi-line Comments](#multi-line-comments) | [Cucumber Tags](#cucumber-tags) @@ -316,9 +316,9 @@ is the same as if using JUnit. ```java package animals.cats; -import com.intuit.karate.testng.KarateTest; +import com.intuit.karate.testng.KarateRunner; -public class CatsRunner extends KarateTest { +public class CatsRunner extends KarateRunner { } ```