opsdash-app/opsdash/tests/php/SmokeTest.php
2025-10-27 16:03:31 +07:00

19 lines
354 B
PHP

<?php
declare(strict_types=1);
namespace OCA\Opsdash\Tests;
use PHPUnit\Framework\TestCase;
/**
* Minimal smoke test to ensure PHPUnit wiring works.
*
* Once services are extracted we will replace this with
* targeted unit tests.
*/
class SmokeTest extends TestCase {
public function testPhpUnitWiring(): void {
$this->assertTrue(true);
}
}