ServiceTest::testSkautisService()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 8
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
namespace SkautisBundle\Tests\Integration;
4
5
6
class ServiceTest extends KernelAwareTest
7
{
8
    public function testSkautisService()
9
    {
10
        $skautIS = $this->container->get('skautis');
11
12
        $loginUrl = $skautIS->getLoginUrl();
13
14
        $this->assertContains('http://', $loginUrl);
15
    }
16
}
17