19 lines
264 B
PHP
19 lines
264 B
PHP
<?php
|
|
/**
|
|
* Class Test_Setup
|
|
*
|
|
* @package WP-Background-Processing
|
|
*/
|
|
|
|
/**
|
|
* Sample test case.
|
|
*/
|
|
class Test_Setup extends WP_UnitTestCase {
|
|
|
|
/**
|
|
* Are unit tests set up correctly?
|
|
*/
|
|
public function test_it_works() {
|
|
$this->assertTrue( true );
|
|
}
|
|
}
|