aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/resources/karatetest/features/04--StatusRessourceTest.feature
blob: f616e9078658959bad53dbb085f4879cae18ef6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# new feature
# Tags: optional
    
Feature: Status Resource

Background:
* url nbiBaseUrl
* def Context = Java.type('org.onap.nbi.test.Context');
* call Context.startServers();
    
Scenario: testHealthCheck

Given path 'status'
When method get
Then status 200
And match response.status == 'ok'
And match response.name == 'nbi'