Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 363097 - Exception on dictionary function getKeys
Summary: Exception on dictionary function getKeys
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: EDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-11-07 15:19 EST by broy2 CLA
Modified: 2017-02-23 14:17 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description broy2 CLA 2011-11-07 15:19:55 EST
Use EUNIT to run:

library dictionaryFunctions
    myDictionary Dictionary = new dictionary(true,
                    OrderingKind.byInsertion){ID = 5, lastName = "Twain", firstName = "Mark"};
    keys string[];
    values any[];
    myInt int;
    function getKeys(){@Test}
        keys = myDictionary.getKeys();
        myInt = keys.getSize();
        LogResult.assertBigIntEqual1(3, myInt);
    end
end

getKeys: ERROR - uncaught exception for: dictionaryFunctions::getKeys
Comment 1 broy2 CLA 2011-11-21 17:13:37 EST
Fixed in 20111121 build.
Comment 2 broy2 CLA 2011-11-21 17:13:49 EST
Verified.