/**
  * @test registerDataFormat should throw exception when default data format is not defined adn mimeType is NULL
  */
 public function testRegisterDataFormatShouldThrowExceptionWhenNoDefaultDataFormat()
 {
     $msg = 'Default data format not defined';
     $this->setExpectedException('Wookieb\\ZorroRPC\\Exception\\DataFormatNotFoundException', $msg);
     $this->object->getDataFormatForMimeType();
 }