IndustryJobTest::setUp()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
dl 0
loc 5
rs 9.4285
c 2
b 0
f 1
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
namespace Tarioch\EveapiFetcherBundle\Tests\Functional\Api\Corp;
3
4
use Tarioch\EveapiFetcherBundle\Component\EveApi\Corp\IndustryJobUpdater;
5
6
class IndustryJobTest extends AbstractIndustryJobTest
7
{
8
    public function setUp()
9
    {
10
        parent::setUp();
11
        $this->api = new IndustryJobUpdater($this->entityManager);
12
    }
13
}
14