Skip to content

Commit b91b104

Browse files
committed
Clean tests categories
1 parent 51af8e3 commit b91b104

File tree

6 files changed

+35
-35
lines changed

6 files changed

+35
-35
lines changed

src/DataFrame-Tests/DataFrameAggrGroupTest.class.st

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Class {
77
#category : #'DataFrame-Tests'
88
}
99

10-
{ #category : #initialization }
10+
{ #category : #running }
1111
DataFrameAggrGroupTest >> setUp [
1212

1313
df := DataFrame withRows: #(
@@ -20,7 +20,7 @@ DataFrameAggrGroupTest >> setUp [
2020
df columnNames: #(total_bill tip sex smoker day time size).
2121
]
2222

23-
{ #category : #initialization }
23+
{ #category : #tests }
2424
DataFrameAggrGroupTest >> testGroupByAggregateArrayMultipleUsingAsSelector [
2525
| expected actual |
2626

@@ -43,7 +43,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateArrayMultipleUsingAsSelector [
4343
self assert: actual equals: expected
4444
]
4545

46-
{ #category : #initialization }
46+
{ #category : #tests }
4747
DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsBlock [
4848
| expected actual |
4949

@@ -59,7 +59,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsBlock [
5959
self assert: actual equals: expected
6060
]
6161

62-
{ #category : #initialization }
62+
{ #category : #tests }
6363
DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsNoSuchAggregateColumnError [
6464
self
6565
should: [
@@ -68,7 +68,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsNoSuchAggregateColumnE
6868
raise: Error.
6969
]
7070

71-
{ #category : #initialization }
71+
{ #category : #tests }
7272
DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsNoSuchGroupColumnError [
7373
self
7474
should: [
@@ -77,7 +77,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsNoSuchGroupColumnError
7777
raise: Error.
7878
]
7979

80-
{ #category : #initialization }
80+
{ #category : #tests }
8181
DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsSameColumnError [
8282
self
8383
should: [
@@ -86,7 +86,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsSameColumnError [
8686
raise: Error.
8787
]
8888

89-
{ #category : #initialization }
89+
{ #category : #tests }
9090
DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsSelector [
9191
| expected actual |
9292

@@ -102,7 +102,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingAsSelector [
102102
self assert: actual equals: expected
103103
]
104104

105-
{ #category : #initialization }
105+
{ #category : #tests }
106106
DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingBlock [
107107
| expected actual |
108108

@@ -118,7 +118,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingBlock [
118118
self assert: actual equals: expected
119119
]
120120

121-
{ #category : #initialization }
121+
{ #category : #tests }
122122
DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingSelector [
123123
| expected actual |
124124

@@ -134,7 +134,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateArrayUsingSelector [
134134
self assert: actual equals: expected
135135
]
136136

137-
{ #category : #initialization }
137+
{ #category : #tests }
138138
DataFrameAggrGroupTest >> testGroupByAggregateUsingAsBlock [
139139
| expected actual |
140140

@@ -152,7 +152,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingAsBlock [
152152
self assert: actual equals: expected
153153
]
154154

155-
{ #category : #initialization }
155+
{ #category : #tests }
156156
DataFrameAggrGroupTest >> testGroupByAggregateUsingAsNoSuchAggregateColumnError [
157157
self
158158
should: [
@@ -163,7 +163,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingAsNoSuchAggregateColumnError
163163
raise: Error.
164164
]
165165

166-
{ #category : #initialization }
166+
{ #category : #tests }
167167
DataFrameAggrGroupTest >> testGroupByAggregateUsingAsNoSuchGroupColumnError [
168168
self
169169
should: [
@@ -174,7 +174,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingAsNoSuchGroupColumnError [
174174
raise: Error.
175175
]
176176

177-
{ #category : #initialization }
177+
{ #category : #tests }
178178
DataFrameAggrGroupTest >> testGroupByAggregateUsingAsSameColumnError [
179179
self
180180
should: [
@@ -185,7 +185,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingAsSameColumnError [
185185
raise: Error.
186186
]
187187

188-
{ #category : #initialization }
188+
{ #category : #tests }
189189
DataFrameAggrGroupTest >> testGroupByAggregateUsingAsSelector [
190190
| expected actual |
191191

@@ -203,7 +203,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingAsSelector [
203203
self assert: actual equals: expected
204204
]
205205

206-
{ #category : #initialization }
206+
{ #category : #tests }
207207
DataFrameAggrGroupTest >> testGroupByAggregateUsingBlock [
208208
| expected actual |
209209

@@ -220,7 +220,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingBlock [
220220
self assert: actual equals: expected
221221
]
222222

223-
{ #category : #initialization }
223+
{ #category : #tests }
224224
DataFrameAggrGroupTest >> testGroupByAggregateUsingNoSuchAggregateColumnError [
225225
self
226226
should: [
@@ -230,7 +230,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingNoSuchAggregateColumnError [
230230
raise: Error.
231231
]
232232

233-
{ #category : #initialization }
233+
{ #category : #tests }
234234
DataFrameAggrGroupTest >> testGroupByAggregateUsingNoSuchGroupColumnError [
235235
self
236236
should: [
@@ -240,7 +240,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingNoSuchGroupColumnError [
240240
raise: Error.
241241
]
242242

243-
{ #category : #initialization }
243+
{ #category : #tests }
244244
DataFrameAggrGroupTest >> testGroupByAggregateUsingSameColumnError [
245245
self
246246
should: [
@@ -250,7 +250,7 @@ DataFrameAggrGroupTest >> testGroupByAggregateUsingSameColumnError [
250250
raise: Error.
251251
]
252252

253-
{ #category : #initialization }
253+
{ #category : #tests }
254254
DataFrameAggrGroupTest >> testGroupByAggregateUsingSelector [
255255
| expected actual |
256256

src/DataFrame-Tests/DataFrameHeadTailTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Class {
88
#category : #'DataFrame-Tests'
99
}
1010

11-
{ #category : #initialization }
11+
{ #category : #running }
1212
DataFrameHeadTailTest >> setUp [
1313

1414
df := DataFrame withRows: #(

src/DataFrame-Tests/DataFrameInternalTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Class {
77
#category : #'DataFrame-Tests'
88
}
99

10-
{ #category : #initialization }
10+
{ #category : #running }
1111
DataFrameInternalTest >> setUp [
1212

1313
df := DataFrameInternal withRows: #(

src/DataFrame-Tests/DataFrameStatsTest.class.st

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Class {
77
#category : #'DataFrame-Tests'
88
}
99

10-
{ #category : #initialization }
10+
{ #category : #running }
1111
DataFrameStatsTest >> setUp [
1212

1313
df := DataFrame withRows: #(
@@ -24,7 +24,7 @@ DataFrameStatsTest >> setUp [
2424
df columnNames: #(sepalLength sepalWidth petalLength petalWidth).
2525
]
2626

27-
{ #category : #initialization }
27+
{ #category : #tests }
2828
DataFrameStatsTest >> testAverage [
2929

3030
| expected actual |
@@ -66,7 +66,7 @@ DataFrameStatsTest >> testCorrelationMatrix [
6666
closeTo: (expectedCorrelationMatrix at: i at: j) ] ]
6767
]
6868

69-
{ #category : #initialization }
69+
{ #category : #tests }
7070
DataFrameStatsTest >> testFirstQuartile [
7171

7272
| expected actual |
@@ -79,7 +79,7 @@ DataFrameStatsTest >> testFirstQuartile [
7979
self assert: actual equals: expected.
8080
]
8181

82-
{ #category : #initialization }
82+
{ #category : #tests }
8383
DataFrameStatsTest >> testInterquartileRange [
8484

8585
| expected actual |
@@ -92,7 +92,7 @@ DataFrameStatsTest >> testInterquartileRange [
9292
self assert: actual closeTo: expected.
9393
]
9494

95-
{ #category : #initialization }
95+
{ #category : #tests }
9696
DataFrameStatsTest >> testMax [
9797

9898
| expected actual |
@@ -105,7 +105,7 @@ DataFrameStatsTest >> testMax [
105105
self assert: actual equals: expected.
106106
]
107107

108-
{ #category : #initialization }
108+
{ #category : #tests }
109109
DataFrameStatsTest >> testMedian [
110110

111111
| expected actual |
@@ -118,7 +118,7 @@ DataFrameStatsTest >> testMedian [
118118
self assert: actual equals: expected.
119119
]
120120

121-
{ #category : #initialization }
121+
{ #category : #tests }
122122
DataFrameStatsTest >> testMin [
123123

124124
| expected actual |
@@ -131,7 +131,7 @@ DataFrameStatsTest >> testMin [
131131
self assert: actual equals: expected.
132132
]
133133

134-
{ #category : #initialization }
134+
{ #category : #tests }
135135
DataFrameStatsTest >> testMode [
136136

137137
| expected actual |
@@ -144,7 +144,7 @@ DataFrameStatsTest >> testMode [
144144
self assert: actual equals: expected.
145145
]
146146

147-
{ #category : #initialization }
147+
{ #category : #tests }
148148
DataFrameStatsTest >> testRange [
149149

150150
| expected actual |
@@ -157,7 +157,7 @@ DataFrameStatsTest >> testRange [
157157
self assert: actual closeTo: expected.
158158
]
159159

160-
{ #category : #initialization }
160+
{ #category : #tests }
161161
DataFrameStatsTest >> testStdev [
162162

163163
| expected actual |
@@ -171,7 +171,7 @@ DataFrameStatsTest >> testStdev [
171171
self assert: actual closeTo: expected.
172172
]
173173

174-
{ #category : #initialization }
174+
{ #category : #tests }
175175
DataFrameStatsTest >> testThirdQuartile [
176176

177177
| expected actual |
@@ -184,7 +184,7 @@ DataFrameStatsTest >> testThirdQuartile [
184184
self assert: actual equals: expected.
185185
]
186186

187-
{ #category : #initialization }
187+
{ #category : #tests }
188188
DataFrameStatsTest >> testVariance [
189189

190190
| expected actual |

src/DataFrame-Tests/DataFrameTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Class {
77
#category : #'DataFrame-Tests'
88
}
99

10-
{ #category : #initialization }
10+
{ #category : #running }
1111
DataFrameTest >> setUp [
1212

1313
df := DataFrame withRows: #(

src/DataFrame-Tests/DataSeriesTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Class {
88
#category : #'DataFrame-Tests'
99
}
1010

11-
{ #category : #initialization }
11+
{ #category : #running }
1212
DataSeriesTest >> setUp [
1313
keyArray := #(a b c d e f g h i j k).
1414

0 commit comments

Comments
 (0)