add testcase

This commit is contained in:
mckang
2018-09-07 14:04:13 +09:00
parent 2b48c2004e
commit 6d861fccfc
7 changed files with 125 additions and 1 deletions

View File

@ -18,6 +18,11 @@ public class DefaultQueryResult<T extends Data> extends Result<T>{
public List<T> getResult() {
return result;
}
@Override
public String toString() {
return "DefaultQueryResult [result=" + result + "]";
}

View File

@ -22,7 +22,7 @@ public class QueryResultItemValue {
}
@Override
public String toString() {
return "ResultDataItemValue [timestamp=" + timestamp + ", value=" + value + "]";
return "QueryResultItemValue [timestamp=" + timestamp + ", value=" + value + "]";
}
}