mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-26 23:09:31 +08:00
13 lines
No EOL
289 B
PHP
Executable file
13 lines
No EOL
289 B
PHP
Executable file
<?php
|
|
|
|
class Pojo_A11y_Test_Base extends WP_UnitTestCase {
|
|
|
|
public function test_plugin_activated() {
|
|
$this->assertTrue( is_plugin_active( PLUGIN_PATH ) );
|
|
}
|
|
|
|
public function test_getInstance() {
|
|
$this->assertInstanceOf( 'Pojo_Accessibility', Pojo_Accessibility::instance() );
|
|
}
|
|
|
|
} |