wordpress-activitypub-event.../tests/test-class-sample.php
André Menrath 8d2c8b2d35
Some checks failed
PHPUnit / PHPUnit – PHP 8.1 (push) Failing after 1m5s
PHPUnit / PHPUnit – PHP 8.2 (push) Failing after 1m1s
PHPUnit / PHPUnit – PHP 8.3 (push) Failing after 56s
install event plugins in ci
2024-09-23 20:07:36 +02:00

29 lines
523 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 );
}
/**
* Tesd tes
*/
public function test_the_events_calendar() {
// Replace this with some actual testing code.
$class_exists = class_exists( 'Tribe__Events__Main' );
$this->assertTrue( $class_exists );
}
}