Helios-Workspace-Tests.js 1.4 KB

123456789101112131415161718192021222324252627
  1. define("amber/Helios-Workspace-Tests", ["amber_vm/smalltalk","amber_vm/nil","amber_vm/_st"], function(smalltalk,nil,_st){
  2. smalltalk.addPackage('Helios-Workspace-Tests');
  3. smalltalk.packages["Helios-Workspace-Tests"].transport = {"type":"amd","amdNamespace":"amber"};
  4. smalltalk.addClass('HLCodeWidgetTest', smalltalk.TestCase, [], 'Helios-Workspace-Tests');
  5. smalltalk.addMethod(
  6. smalltalk.method({
  7. selector: "testKeyMap",
  8. category: 'tests',
  9. fn: function (){
  10. var self=this;
  11. function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
  12. function $HLCodeWidget(){return smalltalk.HLCodeWidget||(typeof HLCodeWidget=="undefined"?nil:HLCodeWidget)}
  13. return smalltalk.withContext(function($ctx1) {
  14. self._assert_(_st(_st($HLCodeWidget())._pcKeyMap())._isKindOf_($HashedCollection()));
  15. self._assert_(_st(_st($HLCodeWidget())._macKeyMap())._isKindOf_($HashedCollection()));
  16. return self}, function($ctx1) {$ctx1.fill(self,"testKeyMap",{},smalltalk.HLCodeWidgetTest)})},
  17. args: [],
  18. source: "testKeyMap\x0a\x22Key maps are a collection of associations.\x22\x0aself assert: ( HLCodeWidget pcKeyMap isKindOf: HashedCollection ).\x0aself assert: ( HLCodeWidget macKeyMap isKindOf: HashedCollection ).",
  19. messageSends: ["assert:", "isKindOf:", "pcKeyMap", "macKeyMap"],
  20. referencedClasses: ["HashedCollection", "HLCodeWidget"]
  21. }),
  22. smalltalk.HLCodeWidgetTest);
  23. });