test-sample.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Class SampleTest |
| 4 | * |
| 5 | * @package Cookiebot |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Sample test case. |
| 10 | */ |
| 11 | class SampleTest extends WP_UnitTestCase { |
| 12 | |
| 13 | /** |
| 14 | * A single example test. |
| 15 | */ |
| 16 | public function test_sample() { |
| 17 | // Replace this with some actual testing code. |
| 18 | $this->assertTrue( true ); |
| 19 | } |
| 20 | } |
| 21 |