mirror of
https://gh.wpcy.net/https://github.com/mainwp/mainwp-child.git
synced 2026-04-23 10:32:22 +08:00
20 lines
309 B
PHP
20 lines
309 B
PHP
<?php
|
|
/**
|
|
* Class SampleTest
|
|
*
|
|
* @package Mainwp_Child
|
|
*/
|
|
|
|
/**
|
|
* 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 );
|
|
}
|
|
}
|