| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 31 | public function test_build_with_project_namespace(): void  | 
            ||
| 32 |     { | 
            ||
| 33 | $projectNamespace = 'App';  | 
            ||
| 34 | $resolvableType = 'Factory';  | 
            ||
| 35 | $classInfo = ClassInfo::from($this);  | 
            ||
| 36 | |||
| 37 | $actual = $this->rule->buildClassCandidate($projectNamespace, $resolvableType, $classInfo);  | 
            ||
| 38 | |||
| 39 |         self::assertSame('\App\Rule\Factory', $actual); | 
            ||
| 40 | }  | 
            ||
| 42 |