| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class HtmlSpec extends ObjectBehavior |
||
| 22 | { |
||
| 23 | protected $tempDir; |
||
| 24 | |||
| 25 | public function let() |
||
| 26 | { |
||
| 27 | $this->tempDir = sys_get_temp_dir().'/doyo/test-report'; |
||
| 28 | |||
| 29 | $options = [ |
||
| 30 | 'target' => $this->tempDir, |
||
| 31 | 'type' => 'html', |
||
| 32 | 'fileSystemType' => 'dir', |
||
| 33 | 'lowUpperBound' => 20, |
||
| 34 | 'highLowerBound' => 90, |
||
| 35 | 'generator' => 'some-generator', |
||
| 36 | ]; |
||
| 37 | $this->beConstructedWith($options); |
||
| 38 | } |
||
| 39 | |||
| 40 | public function it_is_initializable() |
||
| 41 | { |
||
| 42 | $this->shouldHaveType(Html::class); |
||
| 43 | } |
||
| 44 | |||
| 45 | public function it_should_be_a_report_processor() |
||
| 46 | { |
||
| 47 | $this->shouldBeAnInstanceOf(AbstractReportProcessor::class); |
||
| 48 | $this->shouldImplement(ReportProcessorInterface::class); |
||
| 49 | } |
||
| 50 | |||
| 51 | public function it_should_be_create_processor_properly() |
||
| 55 | } |
||
| 56 | } |
||
| 57 |
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