| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function test_register_when_content_import_deactivated() { |
||
| 14 | $blog_id = $this->factory->blog->create(); |
||
| 15 | update_blog_option( $blog_id, 'msls', [] ); |
||
| 16 | MslsRegistry::set_object( MslsOptions::class, null ); |
||
| 17 | |||
| 18 | switch_to_blog( $blog_id ); |
||
| 19 | |||
| 20 | $obj = Service::instance(); |
||
| 21 | |||
| 22 | $this->assertFalse( $obj->register() ); |
||
| 23 | } |
||
| 24 | |||
| 42 |