| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function test_build_without_project_namespace(): void |
||
| 21 | { |
||
| 22 | $projectNamespace = ''; |
||
| 23 | $resolvableType = 'Factory'; |
||
| 24 | $classInfo = ClassInfo::from($this); |
||
| 25 | |||
| 26 | $actual = $this->rule->buildClassCandidate($projectNamespace, $resolvableType, $classInfo); |
||
| 27 | |||
| 28 | self::assertSame('\Rule\RuleFactory', $actual); |
||
| 29 | } |
||
| 42 |