public function testSetDefault()
{
$options = array('test' => array());
$expected = array('test' => array(), 'assets' => array(), 'options' => array());
$result = $this->object->setDefault($options);
$this->assertNull($result);
$this->assertEquals($expected, $this->object->getDefault());
}