Completed
Pull Request — master (#19)
by Sullivan
04:16
created

VersionsCheckLegacyTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4286
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace SLLH\ComposerVersionsCheck\Tests;
4
5
use SLLH\ComposerVersionsCheck\VersionsCheck;
6
7
/**
8
 * @group legacy
9
 *
10
 * To be removed on 2.0
11
 */
12
class VersionsCheckLegacyTest extends VersionsCheckTest
13
{
14
    /**
15
     * {@inheritdoc}
16
     */
17
    protected function setUp()
18
    {
19
        $this->versionsCheck = new VersionsCheck();
20
21
        parent::setUp();
22
    }
23
}
24