FreakyF / Weather-track

A simple real-time weather tracking app with graphical user interface written in java.
MIT License
0 stars 0 forks source link

Creating a City Search Function #7

Open Tymisko opened 1 year ago

Tymisko commented 1 year ago

Our weather console application should allow users to search for the city for which they wish to know the weather. This feature should handle a wide range of city names from around the world, including those with non-English characters and cities that share a name but are located in different regions or countries.

Here are the tasks that we need to address for this issue:

Acceptance Criteria:

  1. Users can enter a city name and the application retrieves the correct city or a list of matching cities.
  2. The function correctly handles city names in various languages and is case-insensitive.
  3. When multiple cities share a name, the application correctly offers the user a choice.
  4. Errors are properly handled and do not crash the application. The user is informed when city data cannot be retrieved.
  5. Tests confirm the correctness of the city search function and its resilience to common failure scenarios.
Tymisko commented 1 year ago

Blocked by #6