/**
  * Tests when try to write to a path when file already exists
  * @expectedException Exception
  */
 public function testWriteBeforeGenerates()
 {
     $apigee = new ApiGeenerator('DoNotExistsAPI');
     $apigee->write('.');
 }