| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class GraphicPrimitiveFactoryTest extends \PHPUnit_Framework_TestCase |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @dataProvider dataProviderGetFieldRenderer |
||
| 14 | * @param string $graphicPrimitiveType |
||
| 15 | * @param string $rendererExpected |
||
| 16 | */ |
||
| 17 | public function testGetFieldRenderer($graphicPrimitiveType, $rendererExpected) |
||
| 18 | { |
||
| 19 | $factory = new GraphicPrimitiveFactory(); |
||
| 20 | $rendererActual = $factory->getFieldRenderer($graphicPrimitiveType); |
||
| 21 | |||
| 22 | $this->assertInstanceOf($rendererExpected, $rendererActual); |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return array |
||
| 27 | */ |
||
| 28 | public function dataProviderGetFieldRenderer() |
||
| 32 | ]; |
||
| 33 | } |
||
| 35 |
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