setBlankLineAtEnd() public method

Sets whether a blank line should be generated at the end of the file
public setBlankLineAtEnd ( boolean $show )
$show boolean `true` if it will be generated and `false` if not
 public function testCodeFileGeneratorConfigSetters()
 {
     $config = new CodeFileGeneratorConfig();
     $this->assertEquals('hello world', $config->setHeaderComment('hello world')->getHeaderComment());
     $docblock = new Docblock();
     $this->assertSame($docblock, $config->setHeaderDocblock($docblock)->getHeaderDocblock());
     $this->assertFalse($config->setBlankLineAtEnd(false)->getBlankLineAtEnd());
     $this->assertTrue($config->setDeclareStrictTypes(true)->getDeclareStrictTypes());
 }