mirror of
https://gh.wpcy.net/https://github.com/wp-cli/scaffold-command.git
synced 2026-04-27 10:26:26 +08:00
20 lines
294 B
Text
20 lines
294 B
Text
<?php
|
|
/**
|
|
* Class SampleTest
|
|
*
|
|
* @package {{theme_package}}
|
|
*/
|
|
|
|
/**
|
|
* Sample test case.
|
|
*/
|
|
class SampleTest extends WP_UnitTestCase {
|
|
|
|
/**
|
|
* A single example test.
|
|
*/
|
|
public function test_sample() {
|
|
// Replace this with some actual testing code.
|
|
$this->assertTrue( true );
|
|
}
|
|
}
|