You are here

public function ViewsDataExportExporterBaseTest::logVerboseResult in Views data export 7.4

A function to enable the tests to post results to the test results table.

Parameters

$result:

string $prefix:

24 calls to ViewsDataExportExporterBaseTest::logVerboseResult()
CSVExportViewsDataExportExporterTests::testBOF in tests/exporter_tests/csv.test
Test the header writing.
CSVExportViewsDataExportExporterTests::testEOF in tests/exporter_tests/csv.test
CSVExportViewsDataExportExporterTests::testHTMLOptions in tests/exporter_tests/csv.test
Test the HTML escaping option.
CSVExportViewsDataExportExporterTests::testNewLineOptions in tests/exporter_tests/csv.test
Test the newline replacement option.
CSVExportViewsDataExportExporterTests::testQuoteOptions in tests/exporter_tests/csv.test

... See full list

File

tests/exporter_tests/base.test, line 83

Class

ViewsDataExportExporterBaseTest

Code

public function logVerboseResult($result, $prefix = '') {
  $this
    ->verbose($prefix . '<br><pre>' . check_plain($result) . '</pre>');
}