public function testMarshallAsArray()
 {
     $marshaller = new Marshaller();
     $data = $marshaller->marshall(new Integer(12), Marshaller::MARSHALL_ARRAY);
     $this->assertEquals(12, $data['base']['integer']);
 }