initial commit

This commit is contained in:
2023-12-24 09:07:27 -06:00
commit 5216d8f8f9
18 changed files with 989 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 );
}
}