| 1 |
<?php |
| 2 |
|
| 3 |
declare(strict_types=1); |
| 4 |
|
| 5 |
namespace Hostinger\Tests\Integration\Utils; |
| 6 |
|
| 7 |
use Hostinger\Tests\Integration\TestCase; |
| 8 |
use Hostinger\WpHelper\Utils; |
| 9 |
|
| 10 |
class UtilsTest extends TestCase |
| 11 |
{ |
| 12 |
public function test_is_plugin_activate(): void |
| 13 |
{ |
| 14 |
activate_plugin('hello.php'); |
| 15 |
|
| 16 |
$this->assertTrue(Utils::isPluginActive('hello')); |
| 17 |
} |
| 18 |
} |
| 19 |
|