Completed
Pull Request — master (#19)
by Sullivan
03:48
created

VersionsCheckLegacyTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 1
cbo 2
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 6 1
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