load test

This commit is contained in:
Michal Piotrowski 2012-08-27 21:52:34 +02:00
parent 2cf50b7801
commit 8a3c8c9c03
1 changed files with 6 additions and 0 deletions

View File

@ -173,4 +173,10 @@ EOF;
{
ClassCollectionLoader::load(array('SomeNotExistingClass'), '', 'foo', false);
}
public function testLoadTwiceClass()
{
ClassCollectionLoader::load(array('Foo'), '', 'foo', false);
ClassCollectionLoader::load(array('Foo'), '', 'foo', false);
}
}