Extends
lithium\test\UnitSource
public function testReset() {
$items = array(array(
'adapter' => '\some\adapter',
'filters' => array('filter1', 'filter2')
));
$this->adaptable->config($items);
$result = $this->adaptable->config();
$expected = $items;
$this->assertEqual($expected, $result);
$result = $this->adaptable->reset();
$this->assertNull($result);
$this->assertFalse($this->adaptable->config());
}