Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 355397

Summary: [EDT test framework] LogResults.egl contains invalid EDT code
Product: z_Archived Reporter: Kathy Carroll <carrollk>
Component: EDTAssignee: Project Inbox <edt.compiler-inbox>
Status: CLOSED FIXED QA Contact:
Severity: major    
Priority: P3 CC: mheitz
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Kathy Carroll CLA 2011-08-22 10:36:48 EDT
these functions

	function assertDecimalEqual(message String in, expected decimal in, actual decimal in)
		isEqual boolean = (expected == actual);
		expectAssertTrue(message, expected, actual, isEqual);				
	end
	
	function assertDecimalEqual1(expected decimal in, actual decimal in)
		assertDecimalEqual("", expected, actual);
	end

are getting EDT validation errors:

IWN.VAL.4350.e 197/58 The type definition for primitive type DECIMAL must include a length.
IWN.VAL.5602.e 197/58 The parameter expected of type decimal for Function assertDecimalEqual in Library LogResult must specify a length.
Comment 1 Kathy Carroll CLA 2011-09-01 08:53:52 EDT
This problem has been resolved.
Comment 2 Kathy Carroll CLA 2011-09-01 08:54:22 EDT
verified
Comment 3 Lisa Lasher CLA 2011-10-11 16:01:52 EDT
Closing this defect.