You are here

protected function TXTExportViewsDataExportExporterTests::testEOF in Views data export 7.4

Test End Of File.

File

tests/exporter_tests/txt.test, line 83

Class

TXTExportViewsDataExportExporterTests

Code

protected function testEOF() {
  $exporter = $this
    ->getExporter();
  $result = $this
    ->executeEOF($exporter);
  $expect = '';
  $this
    ->logVerboseResult($result, 'Actual result');
  $this
    ->logVerboseResult($expect, 'Expected to contain');
  $this
    ->assertEqual($result, $expect, 'The EOF is as expected.');
}