File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed
Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,4 @@ composer.lock
99phpunit.xml
1010phpcs.xml
1111.phpcs.xml
12+ .phpunit.result.cache
Original file line number Diff line number Diff line change 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/4.8/phpunit.xsd"
4+ bootstrap =" vendor/autoload.php"
5+ backupGlobals =" false"
6+ beStrictAboutCoversAnnotation =" true"
7+ beStrictAboutOutputDuringTests =" true"
8+ beStrictAboutTestsThatDoNotTestAnything =" true"
9+ beStrictAboutTodoAnnotatedTests =" true"
10+ colors =" true"
11+ verbose =" true" >
12+ <testsuites >
13+ <testsuite name =" default" >
14+ <directory suffix =" Test.php" >tests</directory >
15+ </testsuite >
16+ </testsuites >
17+ </phpunit >
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace WP_CLI \Extension \Tests ;
4+
5+ use WP_CLI \Tests \TestCase ;
6+
7+ class PluginCommandTest extends TestCase {
8+ public function test_sample () {
9+ $ this ->assertTrue ( true );
10+ }
11+ }
You can’t perform that action at this time.
0 commit comments