public function testGet()
 {
     $arrayObject = new ArrayObject(['one' => 1, 'two' => 2, 'three' => 3]);
     $this->assertEquals(3, $arrayObject->get('three'));
 }