Quellcode durchsuchen

Update README.md

Git-Leon vor 6 Jahren
Ursprung
Commit
25bd4f19bb
Es ist kein Account mit dieser Commiter-Email verbunden
1 geänderte Dateien mit 10 neuen und 4 gelöschten Zeilen
  1. 10
    4
      README.md

+ 10
- 4
README.md Datei anzeigen

137
 
137
 
138
 
138
 
139
 -
139
 -
140
-## Part 10 - Test `Config` classes
140
+## Part 10.0 - Test `Config` classes
141
 * Each of the following `Test` classes should be annotated with
141
 * Each of the following `Test` classes should be annotated with
142
 	* `@SpringBootTest`
142
 	* `@SpringBootTest`
143
 		* indicates that this class is a Spring Boot test class
143
 		* indicates that this class is a Spring Boot test class
165
 * Create a `TestClassroomConfig` class in the `test` package.
165
 * Create a `TestClassroomConfig` class in the `test` package.
166
 * The class should ensure that each `Bean` in the `TestClassroomConfig` class is configured as expected.
166
 * The class should ensure that each `Bean` in the `TestClassroomConfig` class is configured as expected.
167
 
167
 
168
-## Part 11 - Using `@Component`
168
+
169
+
170
+
171
+
172
+
173
+
174
+## Part 11.0 - Using `@Component`
169
 * Annotating a class signature class with `@Component` allows Spring to register this class as a `Bean` implicitly.
175
 * Annotating a class signature class with `@Component` allows Spring to register this class as a `Bean` implicitly.
170
 -
176
 -
171
-### Part 11 - Create `Alumni` Class
177
+### Part 11.1 - Create `Alumni` Class
172
 * Create an `Alumni` component which autowires `Students` of the previous and `Instructors`
178
 * Create an `Alumni` component which autowires `Students` of the previous and `Instructors`
173
 * Create an `executeBootcamp` method which teaches each `Student` in the composite `Students` a `totalNumberOfHours` of `1200`.
179
 * Create an `executeBootcamp` method which teaches each `Student` in the composite `Students` a `totalNumberOfHours` of `1200`.
174
 	* Annotate this method with `@PostConstruct`
180
 	* Annotate this method with `@PostConstruct`
175
 		* denotes that this method must be executed before the class is put into an IoC container
181
 		* denotes that this method must be executed before the class is put into an IoC container
176
 
182
 
177
 -
183
 -
178
-### Part 11.1 - Test `Alumni` Class
184
+### Part 11.2 - Test `Alumni` Class
179
 * Write a test class which ensures that each `Student` in the `Alumni` class has been taught `1200` hours upon injection of the `Alumni` dependency.
185
 * Write a test class which ensures that each `Student` in the `Alumni` class has been taught `1200` hours upon injection of the `Alumni` dependency.