ExampleFunctionalCest::testCraftEdition()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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