Пример #1
0
 /**
  * @dataProvider providerGetSetLineEndings
  */
 public function testGetSetLineEndings($input, $expected, $expectedLabel)
 {
     $this->assertInstanceOf('CSanquer\\ColibriCsv\\Dialect', $this->dialect->setLineEndings($input));
     $this->assertEquals($expected, $this->dialect->getLineEndings());
     $this->assertEquals($expectedLabel, $this->dialect->getLineEndings(true));
     $this->assertEquals($expectedLabel, $this->dialect->getLineEndingsAsLabel(true));
 }