Exemplo n.º 1
0
 /**
  * @test
  * it should not switch to theme if not set
  */
 public function it_should_not_switch_to_theme_if_not_set()
 {
     unset($this->config['theme']);
     $this->wp->switch_theme(Argument::type('string'))->shouldNotBeCalled();
     $sut = $this->make_instance();
     $sut->_switch_theme();
 }