Browse Source

Update README.md

Git-Leon 7 years ago
parent
commit
ea5fb85ff4
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      README.md

+ 2
- 1
README.md View File

4
 
4
 
5
 # Part 1.1 - Create `Person` Class
5
 # Part 1.1 - Create `Person` Class
6
 * Create a `Person` class.
6
 * Create a `Person` class.
7
-	* `Person` constructor should have a parameter of type `String` which sets the `name` instance-variable to the respective value.
8
 	* The class should declare a `final` field named `id` of type `long`.
7
 	* The class should declare a `final` field named `id` of type `long`.
8
+	* `Person` constructor should have a parameter of type `long` which sets the `id` field to the respective value.
9
 	* The class should define a `getId()` method which returns the `Person` object's `id` field.
9
 	* The class should define a `getId()` method which returns the `Person` object's `id` field.
10
 	* The class should define a `getName()` method which returns the `Person` object's `name` field.
10
 	* The class should define a `getName()` method which returns the `Person` object's `name` field.
11
 	* The class should define a `setName()` method which sets the `Person` object's `name` field.
11
 	* The class should define a `setName()` method which sets the `Person` object's `name` field.
13
 -
13
 -
14
 # Part 1.0 - Test `Person`
14
 # Part 1.0 - Test `Person`
15
 * Create a `TestPerson` class.
15
 * Create a `TestPerson` class.
16
+	* Create a `testConstructor` method which ensures that a `Person` object's `id` field is being set upon construction.
16
 	* Create a `testSetName` method which ensures that a `Person` object's `name` variable is being set by invoking the `.setName` method.
17
 	* Create a `testSetName` method which ensures that a `Person` object's `name` variable is being set by invoking the `.setName` method.
17
 	* Create a `testConstructor` method which ensures that a `Person` object's `name` variable is being set by invoking the `Person` constructor.
18
 	* Create a `testConstructor` method which ensures that a `Person` object's `name` variable is being set by invoking the `Person` constructor.
18
 
19