woocommerce/plugins/woocommerce-admin/tests/test-sample.php

21 lines
285 B
PHP
Raw Normal View History

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