Test Failed
Branch develop (8017af)
by Andrew
11:49
created

ExampleFunctionalCest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCraftEdition() 0 4 1
1
<?php
2
3
namespace nystudio107\seomatictests\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