| Summary: | [EDT test framework] Need fully qualified library reference | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Kathy Carroll <carrollk> |
| Component: | EDT | Assignee: | Project Inbox <edt.language-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | jqian |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
fixed, I now generate the fully qualified name for the library eunitgen.mine.Skipped.invokeTheTest(); resolved verified with 201109222102 Closing this defect. |
I created an Eunit test library named Skipped (passed, characterLen get same results). Then I generate the EUNIT driver I get unresolved EGL messages in program Skipped_pgm type BasicProgram {} function main() Skipped.invokeTheTest(); TestExecutionLib.writeResultSummary(3); end end These issue happens in RBD as well. There are two ways to fix the code: 1. fully qualify the library function name program Skipped_pgm type BasicProgram {} function main() eunitgen.mine.Skipped.invokeTheTest(); TestExecutionLib.writeResultSummary(3); end end 2. include the use library statement program Skipped_pgm type BasicProgram {} use Skipped; function main() invokeTheTest(); TestExecutionLib.writeResultSummary(3); end end or program Skipped_pgm type BasicProgram {} use Skipped; function main() Skipped.invokeTheTest(); TestExecutionLib.writeResultSummary(3); end end