| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class WPSiteMonitor extends Test_Case { |
||
| 17 | |||
| 18 | public function setUp() { |
||
| 19 | parent::setUp(); |
||
| 20 | |||
| 21 | new WP_Site_Monitor(); |
||
| 22 | (new Settings_Menu)->init_settings(); |
||
| 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() { |
||
| 50 | } |
||
| 51 | } |
||
| 52 |