2020-03-26 19:06:30 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
2020-04-25 21:36:28 +01:00
|
|
|
class TestInit extends TestCase
|
|
|
|
{
|
2020-03-26 19:06:30 +00:00
|
|
|
public function testInitExt()
|
|
|
|
{
|
|
|
|
send_event(new InitExtEvent());
|
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDatabaseUpgrade()
|
|
|
|
{
|
|
|
|
send_event(new DatabaseUpgradeEvent());
|
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
|
|
|
}
|