You are here

function CSVExporterTest::testTitle in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/aklump/loft_data_grids/tests/phpunit/CSVExporterTest.php \AKlump\LoftDataGrids\CSVExporterTest::testTitle()

File

vendor/aklump/loft_data_grids/tests/CSVExporterTest.php, line 77
Tests for the CSVExporter class

Class

CSVExporterTest

Namespace

AKlump\LoftDataGrids

Code

function testTitle() {
  $obj = $this->exporter;
  $obj
    ->setTitle('ti');
  $this
    ->assertSame('ti', $obj
    ->getTitle());
}