Revert phpunit additions

This commit is contained in:
Pascal Birchler 2025-04-30 18:00:59 +02:00
parent 51482846ed
commit 23779dee10
No known key found for this signature in database
GPG key ID: 0DECE73DD74E8B2F
3 changed files with 0 additions and 40 deletions

3
.gitignore vendored
View file

@ -9,6 +9,3 @@ composer.lock
phpunit.xml
phpcs.xml
.phpcs.xml
.phpunit.result.cache
.phpunit.cache
build/logs

View file

@ -1,26 +0,0 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="false"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
convertNoticesToExceptions="true"
convertDeprecationsToExceptions="true"
colors="true"
verbose="true">
<testsuites>
<testsuite name="wp-cli/extension-command tests">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>

<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
</phpunit>

View file

@ -1,11 +0,0 @@
<?php

namespace WP_CLI\Extension\Tests;

use WP_CLI\Tests\TestCase;

class PluginCommandTest extends TestCase {
public function test_sample() {
$this->assertTrue( true );
}
}