Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class WPSiteMonitor extends WP_UnitTestCase { |
||
16 | |||
17 | const OPTION_NAME = 'wp_site_monitor_enable'; |
||
18 | |||
19 | public function setUp() { |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Assert that the plugin settings are unregistered on plugin deactivation. |
||
27 | */ |
||
28 | public function test_settings_unregistered_when_plugin_deactivated() { |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Assert that the plugin settings are removed on plugin uninstall. |
||
40 | */ |
||
41 | public function test_settings_removed_on_plugin_uninstall() { |
||
52 |