1 package gov.nasa.pds.ltdt.testLabel;
2
3 import gov.nasa.pds.tools.dict.ElementDefinition;
4 import gov.nasa.pds.tools.dict.type.InvalidTypeException;
5
6 public class NonDecimalTestValue implements TestValue {
7
8 public Object getTestValue(ElementDefinition element) throws InvalidTypeException {
9 //TODO:Need to add logic to readjust the test value if we are out of range according to element definition.
10 return new String("\"NULL\"");
11 }
12
13 }