peter_backlund 17 лет назад
Родитель
Сommit
dbadf52709

+ 1
- 1
dddsample/tracking/core/src/main/java/se/citerus/dddsample/tracking/core/domain/model/cargo/Cargo.java Просмотреть файл

@@ -250,7 +250,7 @@ public class Cargo extends EntitySupport<Cargo,TrackingId> {
250 250
   }
251 251
 
252 252
   /**
253
-   * @return
253
+   * @return Most recent handling activity, or null if never handled.
254 254
    */
255 255
   public HandlingActivity mostRecentHandlingActivity() {
256 256
     return delivery.mostRecentHandlingActivity();

+ 13
- 0
dddsample/tracking/core/src/test/java/se/citerus/dddsample/tracking/core/application/event/ItineraryUpdaterTest.java Просмотреть файл

@@ -0,0 +1,13 @@
1
+package se.citerus.dddsample.tracking.core.application.event;
2
+
3
+import org.junit.Test;
4
+
5
+public class ItineraryUpdaterTest {
6
+
7
+  ItineraryUpdater itineraryUpdater;
8
+
9
+  @Test
10
+  public void something() {
11
+  }
12
+  
13
+}