wordpress-activitypub-event.../tests/test-class-sample.php
André Menrath f77f4bc017
All checks were successful
PHP Code Checker / Run PHP Code Checker (push) Successful in 42s
Unit Testing / Run phpunit tests (push) Successful in 3m55s
add forgejo actions for phpunit and phpcs
2024-09-21 11:00:33 +02:00

20 lines
306 B
PHP

<?php
/**
* Class SampleTest
*
* @package Activitypub_Event_Extensions
*/
/**
* Sample test case.
*/
class Test_Sample extends WP_UnitTestCase {
/**
* A single example test.
*/
public function test_sample() {
// Replace this with some actual testing code.
$this->assertTrue( true );
}
}