mirror of
https://fast.feibisi.com/https://github.com/wp-cli/scaffold-command.git
synced 2025-10-04 17:01:28 +08:00
10 lines
159 B
PHP
10 lines
159 B
PHP
<?php
|
|
|
|
class SampleTest extends WP_UnitTestCase {
|
|
|
|
function testSample() {
|
|
// replace this with some actual testing code
|
|
$this->assertTrue( true );
|
|
}
|
|
}
|
|
|