| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | final class PasswordAssertTest extends TestCase |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @covers ::assertValidPassword |
||
| 18 | */ |
||
| 19 | public function testWithEmptyPassword(): void |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @covers ::assertValidPassword |
||
| 28 | */ |
||
| 29 | public function testRaiseExceptionWhenPasswordIsNotValid(): void |
||
| 30 | { |
||
| 31 | $this->expectException(InvalidArgumentException::class); |
||
| 32 | |||
| 33 | PasswordAssert::assertValidPassword('12345'); |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @covers ::assertValidPassword |
||
| 38 | */ |
||
| 39 | public function testWithCorrectPasswordValidation(): void |
||
| 44 | } |
||
| 45 | } |
||
| 46 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths