Add sub namespace for plugins

This commit is contained in:
Frederic Guillot
2015-09-20 13:11:41 -04:00
parent fe57edd9e8
commit a0124b45f9
5 changed files with 19 additions and 18 deletions

View File

@@ -0,0 +1,23 @@
<?php
require_once __DIR__.'/../../Base.php';
use Core\Plugin\Loader;
class LoaderTest extends Base
{
public function testGetSchemaVersion()
{
$p = new Loader($this->container);
$this->assertEquals(0, $p->getSchemaVersion('not_found'));
$this->assertTrue($p->setSchemaVersion('plugin1', 1));
$this->assertEquals(1, $p->getSchemaVersion('plugin1'));
$this->assertTrue($p->setSchemaVersion('plugin2', 33));
$this->assertEquals(33, $p->getSchemaVersion('plugin2'));
$this->assertTrue($p->setSchemaVersion('plugin1', 2));
$this->assertEquals(2, $p->getSchemaVersion('plugin1'));
}
}