Test Failed
Push — master ( b8642a...c8c0c1 )
by Jakub
01:33
created

SkippedTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 3
Bugs 0 Features 1
Metric Value
wmc 1
eloc 6
c 3
b 0
f 1
dl 0
loc 11
ccs 0
cts 3
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace MyTester;
6
7
/**
8
 * Skipped test info
9
 *
10
 * @author Jakub Konečný
11
 */
12
final class SkippedTest
13
{
14
    use \Nette\SmartObject;
15
16
    public string $name;
17
    public string $reason;
18
19
    public function __construct(string $name, string $reason)
20
    {
21
        $this->name = $name;
22
        $this->reason = $reason;
23
    }
24
}
25