function CSVExporterTest::testTitle in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/aklump/loft_data_grids/tests/CSVExporterTest.php \AKlump\LoftDataGrids\CSVExporterTest::testTitle()
File
- vendor/
aklump/ loft_data_grids/ tests/ phpunit/ CSVExporterTest.php, line 144 - Tests for the CSVExporter class
Class
Namespace
AKlump\LoftDataGridsCode
function testTitle() {
$obj = $this->exporter;
$obj
->setTitle('ti');
$this
->assertSame('ti', $obj
->getTitle());
}