Implement toString in MockSystemReader and MockConfig

This helps when debugging.

Change-Id: I3d72e1ea207ba60be77a7a9a840abb71ade1271c
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2019-08-10 23:46:50 +02:00
parent 118ee61640
commit 9add6d3e24
1 changed files with 11 additions and 0 deletions

View File

@ -89,6 +89,11 @@ public void save() throws IOException {
public boolean isOutdated() {
return false;
}
@Override
public String toString() {
return "MockConfig";
}
}
long now = 1250379778668L; // Sat Aug 15 20:12:58 GMT-03:30 2009
@ -285,4 +290,10 @@ private void resetOsNames() {
e.printStackTrace();
}
}
@Override
public String toString() {
return "MockSystemReader";
}
}