2018-04-17 21:03:14 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Class SampleTest
|
|
|
|
*
|
2018-07-10 12:48:06 +00:00
|
|
|
* @package WC_Admin
|
2018-04-17 21:03:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sample test case.
|
|
|
|
*/
|
|
|
|
class SampleTest extends WP_UnitTestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A single example test.
|
|
|
|
*/
|
|
|
|
function test_sample() {
|
|
|
|
// Replace this with some actual testing code.
|
|
|
|
$this->assertTrue( true );
|
|
|
|
}
|
|
|
|
}
|