public function testGetPropertyiOS()
 {
     $deviceInfo = new \GodsDev\DefaultDeviceConnector\DefaultDeviceConnector();
     $characteristics = array('user_agent' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C71 Safari/601.1', 'accept' => 'text/html,application/xhtml xml,application/xml;q=0.9,*/*;q=0.8');
     $deviceInfo->setCharacteristics($characteristics);
     //        $result = $deviceInfo->request();
     //        $this->assertNull($deviceInfo->error);
     //        $this->assertEquals('iOS', $result['operating_system_name']);
     $this->assertEquals('iOS', $deviceInfo->getProperty('operating_system_name'));
     $this->assertEquals('Apple', $deviceInfo->getProperty('vendor'));
 }