public function testSourceContentGetterAndSetter()
 {
     $file = new Zend_CodeGenerator_Php_File();
     $file->setSourceContent('Foo');
     $this->assertEquals('Foo', $file->getSourceContent());
 }