21 lines
305 B
PHP
21 lines
305 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Class SampleTest
|
||
|
*
|
||
|
* @package Activitypub_Event_Extensions
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* 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 );
|
||
|
}
|
||
|
}
|