Completed
Push — master ( b48e27...d83119 )
by Jakub
06:58
created

SkippedTest::getReason()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 1
c 1
b 0
f 1
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
declare(strict_types=1);
3
4
namespace MyTester;
5
6
/**
7
 * Skipped test info
8
 *
9
 * @author Jakub Konečný
10
 * @internal
11
 */
12
final class SkippedTest {
13
  use \Nette\SmartObject;
14
15
  public string $name;
16
  public string $reason;
17
18
  public function __construct(string $name, string $reason) {
19
    $this->name = $name;
20
    $this->reason = $reason;
21
  }
22
}
23
?>