/**
  * @test
  * it should return admin bar disabled if is network admin
  */
 public function it_should_return_admin_bar_disabled_if_is_network_admin()
 {
     // cannot do this... final class...
     // $screen = $this->prophesize( '\WP_Screen' );
     // $screen->in_admin( 'network' )->willReturn( true );
     // $GLOBALS['current_screen'] = $screen->reveal();
     // so we mock the screen object the 1995 way
     $GLOBALS['current_screen'] = new WP_Screen(['in_admin' => true]);
     $sut = new Admin_Bar();
     $this->assertFalse($sut->is_enabled());
 }