Selaa lähdekoodia

Update README.md

Git-Leon 7 vuotta sitten
vanhempi
commit
cfb4b4bed3
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1
    2
      README.md

+ 1
- 2
README.md Näytä tiedosto

93
 # Part 6.0 - Test `People`
93
 # Part 6.0 - Test `People`
94
 * Create a `TestPeople` class.
94
 * Create a `TestPeople` class.
95
 	* Create a `testAdd` method which ensures that our `personList` in our `People` class populated with respective `Student` objects following invokation of the `addStudent` method.
95
 	* Create a `testAdd` method which ensures that our `personList` in our `People` class populated with respective `Student` objects following invokation of the `addStudent` method.
96
-	* Create a `testRemove` method which ensures that the `personList` in a `People` object is **depopulated** with a respective `Person` object following the invokation of the `removeStudent` method.
97
-	* Create a `testRemoveStudents` method which ensures that our `studentList` in our `People` class is **depopulated** with respective `Perspm` objects following invokation of the `remove` method.
96
+	* Create a `testRemove` method which ensures that the `personList` in a `People` object is **depopulated** with a respective `Person` object following the invokation of the `remove` method.
98
 	* Create a `testFindById` method which ensures that a respective `Person` object with a respective `id` field is returned upon invokation of the `findById` method on a respective `People` object.
97
 	* Create a `testFindById` method which ensures that a respective `Person` object with a respective `id` field is returned upon invokation of the `findById` method on a respective `People` object.
99
 
98
 
100
 
99