File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1+ filter :
2+ excluded_paths : [vendor/*, tests/*]
3+ tools :
4+ external_code_coverage : true
5+ php_code_coverage : true
6+ checks :
7+ php : true
Original file line number Diff line number Diff line change 99 - composer install
1010
1111script :
12- - ./vendor/bin/phpunit
12+ - ./vendor/bin/phpunit --coverage-clover=coverage.clover
13+
14+ after_script :
15+ - wget https://scrutinizer-ci.com/ocular.phar
16+ - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
Original file line number Diff line number Diff line change @@ -88,10 +88,10 @@ public function test_it_should_get_and_set_the_custom_root_name()
8888 }
8989
9090 /**
91- * @covers \RefactorStudio\PhpArrayToXml\PhpArrayToXml::setCustomNodeName
92- * @covers \RefactorStudio\PhpArrayToXml\PhpArrayToXml::getCustomNodeName
91+ * @covers \RefactorStudio\PhpArrayToXml\PhpArrayToXml::setCustomTagName
92+ * @covers \RefactorStudio\PhpArrayToXml\PhpArrayToXml::getCustomTagName
9393 */
94- public function test_it_should_get_and_set_the_custom_node_name ()
94+ public function test_it_should_get_and_set_the_custom_tag_name ()
9595 {
9696 $ class = new PhpArrayToXml ();
9797
You can’t perform that action at this time.
0 commit comments