Initial commit

This commit is contained in:
Senad Uka
2020-07-05 16:49:14 +02:00
commit a9222a93fc
11 changed files with 470 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
/**
* Class Test_Sample
*
* @package My_Plugin
*/
/**
* Sample test case.
*/
class Test_Sample extends WP_UnitTestCase {
/**
* A single example test.
*/
function test_example() {
// Replace this with some actual testing code.
$this->assertTrue( class_exists( 'My_Plugin' ) );
}
}