Skip to content

Commit

Permalink
adapt test code
Browse files Browse the repository at this point in the history
  • Loading branch information
nkuehnel committed Aug 27, 2019
1 parent f85a16a commit 983114f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/test/java/de/tum/bgu/msm/DummyOccupation.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import de.tum.bgu.msm.data.MitoZone;
import org.locationtech.jts.geom.Coordinate;

import java.util.Optional;

public class DummyOccupation implements MitoOccupation {

public final static DummyOccupation dummy = new DummyOccupation();
Expand All @@ -25,6 +27,16 @@ public MitoZone getOccupationZone() {
return DummyZone.dummy;
}

@Override
public Optional<Integer> getStartTime() {
return Optional.empty();
}

@Override
public void setStartTime(int startTime_s) {

}

@Override
public int getId() {
return 0;
Expand Down

0 comments on commit 983114f

Please sign in to comment.