public function testInitialize() {
$bag = new NamespacedAttributeBag();
$bag
->initialize($this->array);
$this
->assertEquals($this->array, $this->bag
->all());
$array = array(
'should' => 'not stick',
);
$bag
->initialize($array);
// should have remained the same
$this
->assertEquals($this->array, $this->bag
->all());
}