diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 00000000..26d33521
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/.name b/.idea/.name
new file mode 100644
index 00000000..cb67bab4
--- /dev/null
+++ b/.idea/.name
@@ -0,0 +1 @@
+ListyCity
\ No newline at end of file
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 00000000..61a9130c
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml
new file mode 100644
index 00000000..a5f05cd8
--- /dev/null
+++ b/.idea/jarRepositories.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 00000000..d5d35ec4
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/java/com/example/simpleparadox/listycity/CityList.java b/app/src/main/java/com/example/simpleparadox/listycity/CityList.java
index 6da242f3..e02bf467 100644
--- a/app/src/main/java/com/example/simpleparadox/listycity/CityList.java
+++ b/app/src/main/java/com/example/simpleparadox/listycity/CityList.java
@@ -77,4 +77,15 @@ public void delete(City city) {
public int countCities() {
return cities.size();
}
+
+ /**
+ * Method that returns a string that says "Edmonton" for the purpose of lab8
+ * For failed build, it will simple return an empty string
+ * @return
+ */
+ public String getEdmonton(){
+
+ return "Edmonton";
+
+ }
}
diff --git a/app/src/test/java/com/example/simpleparadox/listycity/CityListTest.java b/app/src/test/java/com/example/simpleparadox/listycity/CityListTest.java
index 787eab7e..4366b599 100644
--- a/app/src/test/java/com/example/simpleparadox/listycity/CityListTest.java
+++ b/app/src/test/java/com/example/simpleparadox/listycity/CityListTest.java
@@ -93,4 +93,13 @@ void testCountCities() {
assertEquals(1, cityList.countCities());
}
+
+ @Test
+ void testGetEdmonton(){
+
+ CityList cityList = mockCityList();
+
+ assertEquals(cityList.getEdmonton(), "Edmonton");
+
+ }
}
\ No newline at end of file