mirror of
https://gh.wpcy.net/https://github.com/mehrshaddarzi/wp-cli-reference-command.git
synced 2026-05-06 03:30:15 +08:00
18 lines
356 B
PHP
18 lines
356 B
PHP
<?php
|
|
|
|
namespace test\unit;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ReferenceCommandTest extends TestCase
|
|
{
|
|
|
|
/** @test */
|
|
public function existHelperClass()
|
|
{
|
|
$this->assertTrue(class_exists('WP_CLI_Helper'));
|
|
$this->assertTrue(class_exists('WP_CLI_Util'));
|
|
$this->assertTrue(class_exists('WP_CLI_FileSystem'));
|
|
}
|
|
|
|
}
|