1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Closes #5112 New method setMetaTitle()

This commit is contained in:
camer0n
2023-11-22 12:18:23 -08:00
parent 1df7d8ed1d
commit afd72ff7cb
2 changed files with 34 additions and 9 deletions

View File

@@ -24,7 +24,7 @@
}
catch(Exception $e)
{
$this->assertTrue(false, "Couldn't load e_admin_controller_ui object");
$this->fail("Couldn't load e_admin_controller_ui object");
}
}
@@ -220,12 +220,13 @@
{
}
public function testGetConfig()
*/
/* public function testGetConfig()
{
$result = $this->ui->getConfig();
}
}*/
/*
public function testGetBatchExport()
{
@@ -380,13 +381,22 @@
{
}
*/
/*
public function testSetConfig()
{
$cfg = e107::getConfig();
$before = $cfg->get('sitename');
$this->ui->setConfig($cfg);
$pref = $this->ui->getConfig();
$after = $pref->get('sitename');
$this->assertSame($after, $before);
}
*/
}