Completed
Branch output_parsers_refactor (d2cb12)
by Alessandro
02:20
created

EntityManagerClosedTestStub   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 4
Bugs 2 Features 0
Metric Value
wmc 1
c 4
b 2
f 0
lcom 0
cbo 1
dl 0
loc 12
rs 10
1
<?php
2
3
namespace Paraunit\Tests\Stub;
4
5
/**
6
 * Class EntityManagerClosedTestStub
7
 * @package Paraunit\Tests\Stub
8
 */
9
class EntityManagerClosedTestStub extends BrokenTestBase implements BrokenTestInterface
10
{
11
    const OUTPUT = 'Blah Blah The EntityManager is closed Blah Blah';
12
13
    /**
14
     * @throws \Exception
15
     */
16
    public function testBrokenTest()
17
    {
18
        throw new \Exception(self::OUTPUT);
19
    }
20
}
21