Author: Robin Chalas (robin.chalas@gmail.com)
Inheritance: implements Sonata\Exporter\Writer\WriterInterface
 public function testValidDataFormat()
 {
     $data = array('john', 'doe', false, true);
     $expected = array('john', 'doe', 'no', 'yes');
     $mock = $this->getMockBuilder('Sonata\\Exporter\\Writer\\XlsWriter')->setConstructorArgs(array('formatedbool.xls', false))->getMock();
     $mock->expects($this->any())->method('write')->with($this->equalTo($expected));
     $writer = new FormattedBoolWriter($mock, $this->trueLabel, $this->falseLabel);
     $writer->open();
     $writer->write($data);
     $writer->close();
 }