mirror of
https://github.com/mainwp/mainwp-child.git
synced 2025-09-06 11:10:43 +08:00
21 lines
289 B
PHP
21 lines
289 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 );
|
||
|
}
|
||
|
}
|