WooTrain/wootrain/tests/test-sample.php

21 lines
285 B
PHP
Raw Normal View History

2021-03-24 19:30:01 +00:00
<?php
/**
* Class SampleTest
*
* @package Wootrain
*/
/**
* 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 );
}
}