@@ -13,7 +13,7 @@ ChanelProtocolsCleanerTest >> setUp [
1313 class := self createClassNamed: #ChanelProtocolsFake
1414]
1515
16- { #category : #running }
16+ { #category : #tests }
1717ChanelProtocolsCleanerTest >> testDoesNotUpdateCloseProtocolIfAlreadyRight [
1818 class compile: ' method' classified: ' instance creation' .
1919
@@ -22,7 +22,7 @@ ChanelProtocolsCleanerTest >> testDoesNotUpdateCloseProtocolIfAlreadyRight [
2222 self assert: (class >> #method ) protocol equals: ' instance creation'
2323]
2424
25- { #category : #running }
25+ { #category : #tests }
2626ChanelProtocolsCleanerTest >> testMethodInSpecificProtocol [
2727 class compile: ' initialize' classified: ' random' .
2828
@@ -31,7 +31,7 @@ ChanelProtocolsCleanerTest >> testMethodInSpecificProtocol [
3131 self assert: (class >> #initialize ) protocol equals: ' initialization'
3232]
3333
34- { #category : #running }
34+ { #category : #tests }
3535ChanelProtocolsCleanerTest >> testMethodInSpecificProtocolNotUpdateIfExtension [
3636 class compile: ' initialize' classified: self extensionProtocol.
3737
@@ -40,7 +40,7 @@ ChanelProtocolsCleanerTest >> testMethodInSpecificProtocolNotUpdateIfExtension [
4040 self assert: (class >> #initialize ) protocol equals: self extensionProtocol
4141]
4242
43- { #category : #running }
43+ { #category : #tests }
4444ChanelProtocolsCleanerTest >> testMethodInSpecificProtocolNotUpdateIfNotInTheList [
4545 class compile: ' initialize2' classified: ' random' .
4646
@@ -49,7 +49,7 @@ ChanelProtocolsCleanerTest >> testMethodInSpecificProtocolNotUpdateIfNotInTheLis
4949 self assert: (class >> #initialize2 ) protocol equals: ' random'
5050]
5151
52- { #category : #running }
52+ { #category : #tests }
5353ChanelProtocolsCleanerTest >> testTestMethodInSpecificProtocol [
5454 class := self createTestCaseNamed: #ChanelProtocolsFake .
5555 class compile: ' setUp' classified: ' random' .
@@ -59,7 +59,7 @@ ChanelProtocolsCleanerTest >> testTestMethodInSpecificProtocol [
5959 self assert: (class >> #setUp ) protocol equals: ' running'
6060]
6161
62- { #category : #running }
62+ { #category : #tests }
6363ChanelProtocolsCleanerTest >> testTestMethodInSpecificProtocolNotUpdatedIfExtension [
6464 class := self createTestCaseNamed: #ChanelProtocolsFake .
6565 class compile: ' setUp' classified: self extensionProtocol.
@@ -69,7 +69,7 @@ ChanelProtocolsCleanerTest >> testTestMethodInSpecificProtocolNotUpdatedIfExtens
6969 self assert: (class >> #setUp ) protocol equals: self extensionProtocol
7070]
7171
72- { #category : #running }
72+ { #category : #tests }
7373ChanelProtocolsCleanerTest >> testTestMethodInSpecificProtocolNotUpdatedIfNotInTestCase [
7474 class compile: ' setUp' classified: ' random' .
7575
@@ -78,7 +78,7 @@ ChanelProtocolsCleanerTest >> testTestMethodInSpecificProtocolNotUpdatedIfNotInT
7878 self assert: (class >> #setUp ) protocol equals: ' random'
7979]
8080
81- { #category : #running }
81+ { #category : #tests }
8282ChanelProtocolsCleanerTest >> testTestMethodInSpecificProtocolNotUpdatedIfNotInTheList [
8383 class := self createTestCaseNamed: #ChanelProtocolsFake .
8484 class compile: ' toto' classified: ' random' .
@@ -88,7 +88,7 @@ ChanelProtocolsCleanerTest >> testTestMethodInSpecificProtocolNotUpdatedIfNotInT
8888 self assert: (class >> #toto ) protocol equals: ' random'
8989]
9090
91- { #category : #running }
91+ { #category : #tests }
9292ChanelProtocolsCleanerTest >> testTestMethodsAreInRightProtocol [
9393 class := self createTestCaseNamed: #ChanelProtocolsFake .
9494 class compile: ' testMethod' classified: ' not a test' .
@@ -98,7 +98,7 @@ ChanelProtocolsCleanerTest >> testTestMethodsAreInRightProtocol [
9898 self assert: (class >> #testMethod ) protocol equals: ' tests'
9999]
100100
101- { #category : #running }
101+ { #category : #tests }
102102ChanelProtocolsCleanerTest >> testTestMethodsProtocolAreNotUpdateIfExtension [
103103 class := self createTestCaseNamed: #ChanelProtocolsFake .
104104 class compile: ' testMethod' classified: self extensionProtocol.
@@ -108,7 +108,7 @@ ChanelProtocolsCleanerTest >> testTestMethodsProtocolAreNotUpdateIfExtension [
108108 self assert: (class >> #testMethod ) protocol equals: self extensionProtocol
109109]
110110
111- { #category : #running }
111+ { #category : #tests }
112112ChanelProtocolsCleanerTest >> testTestMethodsProtocolAreNotUpdateIfNotInTestCase [
113113 class compile: ' testMethod' classified: ' not a test' .
114114
@@ -117,7 +117,7 @@ ChanelProtocolsCleanerTest >> testTestMethodsProtocolAreNotUpdateIfNotInTestCase
117117 self assert: (class >> #testMethod ) protocol equals: ' not a test'
118118]
119119
120- { #category : #running }
120+ { #category : #tests }
121121ChanelProtocolsCleanerTest >> testTestMethodsProtocolAreNotUpdateIfStartingByTest [
122122 class := self createTestCaseNamed: #ChanelProtocolsFake .
123123 class compile: ' testMethod' classified: ' test - protocols' .
@@ -127,7 +127,7 @@ ChanelProtocolsCleanerTest >> testTestMethodsProtocolAreNotUpdateIfStartingByTes
127127 self assert: (class >> #testMethod ) protocol equals: ' test - protocols'
128128]
129129
130- { #category : #running }
130+ { #category : #tests }
131131ChanelProtocolsCleanerTest >> testUpdateCloseProtocol [
132132 class compile: ' method' classified: ' instance-creation' .
133133
0 commit comments