This commit is contained in:
2024-05-15 10:54:13 -05:00
commit 89bc962634
13 changed files with 693 additions and 0 deletions

20
tests/test-sample.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
/**
* Class SampleTest
*
* @package Tonys_Sportspress_Enhancements
*/
/**
* 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 );
}
}