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 9
9
- composer install
10
10
11
11
script :
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()
88
88
}
89
89
90
90
/**
91
- * @covers \RefactorStudio\PhpArrayToXml\PhpArrayToXml::setCustomNodeName
92
- * @covers \RefactorStudio\PhpArrayToXml\PhpArrayToXml::getCustomNodeName
91
+ * @covers \RefactorStudio\PhpArrayToXml\PhpArrayToXml::setCustomTagName
92
+ * @covers \RefactorStudio\PhpArrayToXml\PhpArrayToXml::getCustomTagName
93
93
*/
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 ()
95
95
{
96
96
$ class = new PhpArrayToXml ();
97
97
You can’t perform that action at this time.
0 commit comments