initial commit

This commit is contained in:
2023-12-24 09:27:07 -06:00
commit b1ed7ee6c9
8 changed files with 604 additions and 0 deletions

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

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