/**
  * @expectedException \RedKiteCms\Exception\General\RuntimeException
  * @expectedExceptionMessage Method "baz" does not exist for ConfigurationHandler object
  */
 public function testPropertyNotHandled()
 {
     $this->init();
     $configurationHandler = new ConfigurationHandler(vfsStream::url('RedKiteCMS'), 'redkitecms.com', 'vendor/redkitecms-framework');
     $configurationHandler->boot();
     $configurationHandler->baz();
 }