compiler/tests/PPCCompilerTest.st
changeset 515 b5316ef15274
parent 452 9f4558b3be66
--- a/compiler/tests/PPCCompilerTest.st	Fri Jul 24 15:06:54 2015 +0100
+++ b/compiler/tests/PPCCompilerTest.st	Mon Aug 17 12:13:16 2015 +0100
@@ -114,86 +114,6 @@
     self assert: parser parse: ' ab'.
 ! !
 
-!PPCCompilerTest methodsFor:'tests - ids'!
-
-testId1
-    node := PPCNode new
-        name: 'foo'.
-    compiler := PPCCompiler new.
-    
-    id := compiler idFor: node.
-    
-    self assert: compiler ids size = 1.
-    self assert: id = 'foo'.
-!
-
-testId2
-    node1 := PPCNode new
-        name: 'foo'.
-    
-    node2 := PPCNode new
-        name: 'foo'.
-    compiler := PPCCompiler new.
-
-    id1 := compiler idFor: node1.
-    self assert: compiler ids size = 1.
-    self assert: id1 = 'foo'.
-    
-    id2 := compiler idFor: node2.
-    self assert: compiler ids size = 2.
-    self assert: id2 = 'foo_1'.	
-            
-    self assert: (id1 = id2) not.
-!
-
-testId3
-    node1 := PPCNode new
-        name: 'foo'.
-    
-    node2 := node1.
-    compiler := PPCCompiler new.
-        
-    id1 := compiler idFor: node1.
-    self assert: compiler ids size = 1.
-    self assert: id1 = 'foo'.
-    
-    id2 := compiler idFor: node2.
-    self assert: compiler ids size = 1.
-    self assert: id2 = 'foo'.	
-            
-    self assert: (id1 == id2).
-!
-
-testId4
-    node1 := PPCNode new
-        name: 'foo+='.
-    
-    node2 := PPCNode new
-        name: 'foo+='.
-    compiler := PPCCompiler new.
-        
-    id1 := compiler idFor: node1.
-    self assert: compiler ids size = 1.
-    self assert: id1 = 'foo'.
-    
-    id2 := compiler idFor: node2.
-    self assert: compiler ids size = 2.
-    self assert: id2 = 'foo_1'.	
-            
-    self assert: (id1 = id2) not.
-!
-
-testId5
-    node1 := PPCNode new
-        name: 'foo_bar'.
-    
-    compiler := PPCCompiler new.
-        
-    id1 := compiler idFor: node1.
-    self assert: compiler ids size = 1.
-    self assert: id1 = 'foo_bar'.
-! !
-
 !PPCCompilerTest class methodsFor:'documentation'!
 
 version_HG