PluginProbe ʕ •ᴥ•ʔ
Reviews Feed – Add Testimonials and Customer Reviews From Google Reviews, Yelp, TripAdvisor, and More / 2.6.7
Reviews Feed – Add Testimonials and Customer Reviews From Google Reviews, Yelp, TripAdvisor, and More v2.6.7
2.11.0 2.10.0 2.9.0 2.8.0 2.7.0 2.6.7 2.6.8 2.6.5 2.6.4 2.6.3 2.6.2 2.6.0 2.5.5 2.5.4 2.5.3 2.5.2 trunk 1.0 1.0.1 1.0.2 1.0.3 1.1 1.1.1 1.1.2 1.2.0 2.0 2.1.0 2.1.1 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.5.0 2.5.1
reviews-feed / tests / phpunit.xml
reviews-feed / tests Last commit date
Unit 2 months ago bootstrap.php 2 months ago phpunit.xml 2 months ago
phpunit.xml
28 lines
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
4 bootstrap="bootstrap.php"
5 colors="true"
6 cacheDirectory=".phpunit.cache"
7 executionOrder="depends,defects"
8 requireCoverageMetadata="false"
9 beStrictAboutCoverageMetadata="false"
10 beStrictAboutOutputDuringTests="true"
11 failOnRisky="true"
12 failOnWarning="true">
13 <testsuites>
14 <testsuite name="Unit">
15 <directory>Unit</directory>
16 </testsuite>
17 <testsuite name="Providers">
18 <directory>Unit/Providers</directory>
19 </testsuite>
20 </testsuites>
21
22 <source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
23 <include>
24 <directory>../class</directory>
25 </include>
26 </source>
27 </phpunit>
28