public function testCanWriteBlankLines()
 {
     // setup the test
     $outputEngine = new NullOutput();
     $expectedString = \PHP_EOL . \PHP_EOL;
     // perform the test
     $outputEngine->writeEmptyLines(2);
     // did it work?
     // we assume it did for now
     $this->assertTrue(true);
 }