Completed
Push — master ( 630401...3eb757 )
by Oleg
02:43
created

ApiCest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0
1
<?php
2
3
namespace codecept;
4
5
class ApiCest
6
{
7
    public function tryApi(ApiTester $I)
0 ignored issues
show
Comprehensibility introduced by
Avoid variables with short names like $I. Configured minimum length is 3.

Short variable names may make your code harder to understand. Variable names should be self-descriptive. This check looks for variable names who are shorter than a configured minimum.

Loading history...
8
    {
9
        $I->sendGET('/');
10
        $I->seeResponseCodeIs(200);
11
        $I->seeResponseIsJson();
12
    }
13
}
14