Exemplo n.º 1
0
 /**
  * @dataProvider getCellValuesToPrefixOrNot
  */
 public function test_renderScalar_whenCellValueIsFormula_shouldPrefixWithQuote($value, $expectedCsvValue)
 {
     $response = $this->builder->renderScalar($value);
     $this->assertEquals("value\n{$expectedCsvValue}", $response);
 }
Exemplo n.º 2
0
    public function test_renderScalar_shouldNotRemoveLineBreaks()
    {
        $response = $this->builder->renderScalar('The\\nOutput');
        $this->assertEquals('value
The\\nOutput', $response);
    }