Browse Source

Remove ./ from phpunit config files

Bubka 3 năm trước cách đây
mục cha
commit
a571095e11
2 tập tin đã thay đổi với 8 bổ sung8 xóa
  1. 4 4
      phpunit-mysql.xml
  2. 4 4
      phpunit.xml

+ 4 - 4
phpunit-mysql.xml

@@ -14,18 +14,18 @@
     xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
     xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
     <coverage processUncoveredFiles="true">
     <coverage processUncoveredFiles="true">
         <include>
         <include>
-            <directory suffix=".php">./app</directory>
+            <directory suffix=".php">app</directory>
         </include>
         </include>
     </coverage>
     </coverage>
     <testsuites>
     <testsuites>
         <testsuite name="Unit">
         <testsuite name="Unit">
-            <directory suffix="Test.php">./tests/Unit</directory>
+            <directory suffix="Test.php">tests/Unit</directory>
         </testsuite>
         </testsuite>
         <testsuite name="Feature">
         <testsuite name="Feature">
-            <directory suffix="Test.php">./tests/Feature</directory>
+            <directory suffix="Test.php">tests/Feature</directory>
         </testsuite>
         </testsuite>
         <testsuite name="Api.v1">
         <testsuite name="Api.v1">
-            <directory suffix="Test.php">./tests/Api/v1</directory>
+            <directory suffix="Test.php">tests/Api/v1</directory>
         </testsuite>
         </testsuite>
     </testsuites>
     </testsuites>
     <php>
     <php>

+ 4 - 4
phpunit.xml

@@ -14,18 +14,18 @@
     xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
     xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
     <coverage processUncoveredFiles="true">
     <coverage processUncoveredFiles="true">
         <include>
         <include>
-            <directory suffix=".php">./app</directory>
+            <directory suffix=".php">app</directory>
         </include>
         </include>
     </coverage>
     </coverage>
     <testsuites>
     <testsuites>
         <testsuite name="Unit">
         <testsuite name="Unit">
-            <directory suffix="Test.php">./tests/Unit</directory>
+            <directory suffix="Test.php">tests/Unit</directory>
         </testsuite>
         </testsuite>
         <testsuite name="Feature">
         <testsuite name="Feature">
-            <directory suffix="Test.php">./tests/Feature</directory>
+            <directory suffix="Test.php">tests/Feature</directory>
         </testsuite>
         </testsuite>
         <testsuite name="Api.v1">
         <testsuite name="Api.v1">
-            <directory suffix="Test.php">./tests/Api/v1</directory>
+            <directory suffix="Test.php">tests/Api/v1</directory>
         </testsuite>
         </testsuite>
     </testsuites>
     </testsuites>
     <php>
     <php>