| Summary: | Invalid NullValueException occurs testing the value of a nullable timestamp variable | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | mzanjani |
| Component: | EDT | Assignee: | Project Inbox <edt.compiler-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P1 | CC: | pharmon, svihovec |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
I ran into this last week when updating Timestamp to be a reference type and fixed it then. Please re-run your test. I have tested testcase ETimestamp001 using last night build (0.7.0.v201110180903) and there is no NullValueException any more. Thanks closing the defect |
Invalid NullValueException throws when checking a nullable timestamp for null as shown below: mytimeStamp timeStamp?; a boolean; try a = (mytimestamp == null); onException(exception NullValueException) SysLib.writeStdout("NullValueException"); onException(exception AnyException) SysLib.writeStdout("AnyException"); end