def test_ZIP_is_gps_name(self):
     assert TypeDetector.is_gps_name('ZIP') is False
 def test_LOCATION_is_gps_name(self):
     assert TypeDetector.is_gps_name('LOCATION')
 def test_latitude_is_gps_name(self):
     assert TypeDetector.is_gps_name('latitude')
 def test_LONGITUDE_is_gps_name(self):
     assert TypeDetector.is_gps_name('LONGITUDE')
 def test_Unique_Key_is_not_gps_name(self):
     assert TypeDetector.is_gps_name('Unique Key') is False