public function testGet()
 {
     $compareMatrix = array('1A' => array(), '2A' => array(), '3A' => array());
     foreach ($this->object->get() as $key => $row) {
         $this->assertEquals($row, $compareMatrix[$key]);
     }
 }
 public function testGet2()
 {
     $value = $this->object->get();
     $this->assertInstanceOf('ArrayAccess', $value);
 }