| 12345678910111213141516171819202122232425262728293031 | 
							- define("amber_core/Helios-Workspace-Tests", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_core/SUnit"], function(smalltalk,nil,_st){
 
- smalltalk.addPackage('Helios-Workspace-Tests');
 
- smalltalk.packages["Helios-Workspace-Tests"].transport = {"type":"amd","amdNamespace":"amber_core"};
 
- smalltalk.addClass('HLCodeWidgetTest', smalltalk.TestCase, [], 'Helios-Workspace-Tests');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "testKeyMap",
 
- category: 'tests',
 
- fn: function (){
 
- var self=this;
 
- function $HLCodeWidget(){return smalltalk.HLCodeWidget||(typeof HLCodeWidget=="undefined"?nil:HLCodeWidget)}
 
- function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1,$4,$3;
 
- $2=_st(_st($HLCodeWidget())._pcKeyMap())._isKindOf_($HashedCollection());
 
- $ctx1.sendIdx["isKindOf:"]=1;
 
- $1=self._assert_($2);
 
- $ctx1.sendIdx["assert:"]=1;
 
- $4=_st(_st($HLCodeWidget())._macKeyMap())._isKindOf_($HashedCollection());
 
- $3=self._assert_($4);
 
- return self}, function($ctx1) {$ctx1.fill(self,"testKeyMap",{},smalltalk.HLCodeWidgetTest)})},
 
- args: [],
 
- source: "testKeyMap\x0a\x09\x22Key maps are a collection of associations.\x22\x0a\x09self assert: (HLCodeWidget pcKeyMap isKindOf: HashedCollection).\x0a\x09self assert: (HLCodeWidget macKeyMap isKindOf: HashedCollection)",
 
- messageSends: ["assert:", "isKindOf:", "pcKeyMap", "macKeyMap"],
 
- referencedClasses: ["HLCodeWidget", "HashedCollection"]
 
- }),
 
- smalltalk.HLCodeWidgetTest);
 
- });
 
 
  |