Create test-sample.php

This commit is contained in:
Dennis Dornon 2020-02-14 21:54:36 -07:00 committed by GitHub
parent 6a6e5ec01a
commit 9e92564f7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

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