Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class TypeSemanticsTest extends \PHPUnit\Framework\TestCase |
||
13 | { |
||
14 | /** @var TypeSemantics */ |
||
15 | protected $semantics; |
||
16 | |||
17 | public function setUp() |
||
18 | { |
||
19 | $this->semantics = new TypeSemantics(); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @dataProvider monthlyTypesProvider |
||
24 | */ |
||
25 | public function testDetectesMonthlyTypes(TypeInterface $type, bool $shouldBeMonthly) |
||
28 | } |
||
29 | |||
30 | public function monthlyTypesProvider() |
||
38 | ]; |
||
39 | } |
||
41 |