Extends
lithium\test\UnitSource
public function testConfigurationNoAdapter() {
$adapter = new MockAdapter();
$items = array('default' => array('filters' => array()));
$adapter::config($items);
$message = 'No adapter set for configuration in ';
$message .= 'class `lithium\tests\mocks\core\MockAdapter`.';
$this->expectException($message);
$result = $adapter::adapter('default');
}