Completed
Branch master (75e2c8)
by Marcin
03:27 queued 02:00
created

TestCase   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A tearDown() 0 4 1
1
<?php
2
3
namespace mrcnpdlk\Validator;
4
5
class TestCase extends \PHPUnit\Framework\TestCase
6
{
7
    public function setUp()
8
    {
9
        parent::setUp(); // TODO: Change the autogenerated stub
10
    }
11
    public function tearDown()
12
    {
13
        parent::tearDown(); // TODO: Change the autogenerated stub
14
    }
15
}
16