ExampleFunctionalCest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 15
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCraftEdition() 0 4 1
1
<?php
2
3
namespace nystudio107\retourtests\acceptance;
4
5
use Craft;
6
use FunctionalTester;
7
8
class ExampleFunctionalCest
9
{
10
    // Public methods
11
    // =========================================================================
12
13
    // Tests
14
    // =========================================================================
15
16
    /**
17
     *
18
     */
19
    public function testCraftEdition(FunctionalTester $I)
20
    {
21
        $I->amOnPage('?p=/');
22
        $I->seeResponseCodeIs(200);
23
    }
24
}
25