The Inbox: KernelTests-ct.388.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: KernelTests-ct.388.mcz

commits-2
A new version of KernelTests was added to project The Inbox:
http://source.squeak.org/inbox/KernelTests-ct.388.mcz

==================== Summary ====================

Name: KernelTests-ct.388
Author: ct
Time: 28 October 2020, 11:36:38.237544 pm
UUID: c611de6b-f83d-ac45-a83f-00082a8311b4
Ancestors: KernelTests-ul.386

Adds test for a simulation bug that occurs while executing ProtoObject >> #doesNotUnderstand:.

=============== Diff against KernelTests-ul.386 ===============

Item was added:
+ ----- Method: MethodContextTest>>testProtoObjectDoesNotUnderstand (in category 'tests') -----
+ testProtoObjectDoesNotUnderstand
+
+ self assert:
+ [Context runSimulated:
+ [self
+ executeShould: [Compiler evaluate: 'super foo' for: Object new]
+ inScopeOf: MessageNotUnderstood]].!