8 lines
155 B
PHP
8 lines
155 B
PHP
<?php
|
|
|
|
# all tests with WP integration
|
|
class SampleTest extends WP_UnitTestCase {
|
|
function test_sample() {
|
|
$this->assertTrue(true);
|
|
}
|
|
} |