class: RegressionTests::ChangeSetTests
authorJan Vrany <jan.vrany@fit.cvut.cz>
Thu, 09 May 2013 15:42:33 +0200
changeset 927 d0826769b96a
parent 926 7229c7cc2b9d
child 928 bc2301253761
class: RegressionTests::ChangeSetTests changed: #test_ClassDefinitionChange_03a
RegressionTests__ChangeSetTests.st
--- a/RegressionTests__ChangeSetTests.st	Wed May 01 18:40:21 2013 +0200
+++ b/RegressionTests__ChangeSetTests.st	Thu May 09 15:42:33 2013 +0200
@@ -175,7 +175,9 @@
 
     self assert: cs size == 2.
     self assert: cs first  className = 'MockClass'.
+    self assert: cs first fullClassName = 'MockClass'.
     self assert: cs second className = 'MockClass::PrivateClass'.
+    self assert: cs second fullClassName = 'MockClass::PrivateClass'.
     self assert: (Smalltalk at: #'MockClass') isNil.
     cs apply.
     self assert: (Smalltalk at: #'MockClass') notNil.
@@ -184,6 +186,7 @@
     self assert: (Smalltalk at: #'MockClass::PrivateClass') isPrivate
 
     "Created: / 20-11-2012 / 14:54:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 09-05-2013 / 14:41:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 test_ClassDefinitionChange_03b