@@ -102,6 +102,7 @@ private Configuration GetNondefaultConfig()
102
102
return new Configuration ( userSettings ) ;
103
103
}
104
104
105
+ [ TestCategory ( "Settings" ) ]
105
106
[ TestMethod ]
106
107
public void SaveConfigWorks ( )
107
108
{
@@ -130,6 +131,7 @@ public void SaveConfigWorks()
130
131
( ) => Assert . AreEqual ( config . UserSettings . IndenterSettings . IndentSpaces , viewModel . IndentSpaces ) ) ;
131
132
}
132
133
134
+ [ TestCategory ( "Settings" ) ]
133
135
[ TestMethod ]
134
136
public void SetDefaultsWorks ( )
135
137
{
@@ -157,6 +159,7 @@ public void SetDefaultsWorks()
157
159
( ) => Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . IndentSpaces , viewModel . IndentSpaces ) ) ;
158
160
}
159
161
162
+ [ TestCategory ( "Settings" ) ]
160
163
[ TestMethod ]
161
164
public void AlignCommentsWithCodeIsSetInCtor ( )
162
165
{
@@ -166,6 +169,7 @@ public void AlignCommentsWithCodeIsSetInCtor()
166
169
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . AlignCommentsWithCode , viewModel . AlignCommentsWithCode ) ;
167
170
}
168
171
172
+ [ TestCategory ( "Settings" ) ]
169
173
[ TestMethod ]
170
174
public void AlignContinuationsIsSetInCtor ( )
171
175
{
@@ -175,6 +179,7 @@ public void AlignContinuationsIsSetInCtor()
175
179
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . AlignContinuations , viewModel . AlignContinuations ) ;
176
180
}
177
181
182
+ [ TestCategory ( "Settings" ) ]
178
183
[ TestMethod ]
179
184
public void AlignDimColumnIsSetInCtor ( )
180
185
{
@@ -184,6 +189,7 @@ public void AlignDimColumnIsSetInCtor()
184
189
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . AlignDimColumn , viewModel . AlignDimColumn ) ;
185
190
}
186
191
192
+ [ TestCategory ( "Settings" ) ]
187
193
[ TestMethod ]
188
194
public void AlignDimsIsSetInCtor ( )
189
195
{
@@ -193,6 +199,7 @@ public void AlignDimsIsSetInCtor()
193
199
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . AlignDims , viewModel . AlignDims ) ;
194
200
}
195
201
202
+ [ TestCategory ( "Settings" ) ]
196
203
[ TestMethod ]
197
204
public void EndOfLineCommentColumnSpaceAlignmentIsSetInCtor ( )
198
205
{
@@ -202,6 +209,7 @@ public void EndOfLineCommentColumnSpaceAlignmentIsSetInCtor()
202
209
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . EndOfLineCommentColumnSpaceAlignment , viewModel . EndOfLineCommentColumnSpaceAlignment ) ;
203
210
}
204
211
212
+ [ TestCategory ( "Settings" ) ]
205
213
[ TestMethod ]
206
214
public void EndOfLineCommentStyleIsSetInCtor ( )
207
215
{
@@ -211,6 +219,7 @@ public void EndOfLineCommentStyleIsSetInCtor()
211
219
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . EndOfLineCommentStyle , viewModel . EndOfLineCommentStyle ) ;
212
220
}
213
221
222
+ [ TestCategory ( "Settings" ) ]
214
223
[ TestMethod ]
215
224
public void ForceCompilerDirectivesInColumn1IsSetInCtor ( )
216
225
{
@@ -220,6 +229,7 @@ public void ForceCompilerDirectivesInColumn1IsSetInCtor()
220
229
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . ForceCompilerDirectivesInColumn1 , viewModel . ForceCompilerDirectivesInColumn1 ) ;
221
230
}
222
231
232
+ [ TestCategory ( "Settings" ) ]
223
233
[ TestMethod ]
224
234
public void ForceDebugStatementsInColumn1IsSetInCtor ( )
225
235
{
@@ -229,6 +239,7 @@ public void ForceDebugStatementsInColumn1IsSetInCtor()
229
239
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . ForceDebugStatementsInColumn1 , viewModel . ForceDebugStatementsInColumn1 ) ;
230
240
}
231
241
242
+ [ TestCategory ( "Settings" ) ]
232
243
[ TestMethod ]
233
244
public void IgnoreOperatorsInContinuationsIsSetInCtor ( )
234
245
{
@@ -238,6 +249,7 @@ public void IgnoreOperatorsInContinuationsIsSetInCtor()
238
249
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . IgnoreOperatorsInContinuations , viewModel . IgnoreOperatorsInContinuations ) ;
239
250
}
240
251
252
+ [ TestCategory ( "Settings" ) ]
241
253
[ TestMethod ]
242
254
public void IndentCaseIsSetInCtor ( )
243
255
{
@@ -247,6 +259,7 @@ public void IndentCaseIsSetInCtor()
247
259
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . IndentCase , viewModel . IndentCase ) ;
248
260
}
249
261
262
+ [ TestCategory ( "Settings" ) ]
250
263
[ TestMethod ]
251
264
public void IndentEnumTypeAsProcedureIsSetInCtor ( )
252
265
{
@@ -256,6 +269,7 @@ public void IndentEnumTypeAsProcedureIsSetInCtor()
256
269
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . IndentEnumTypeAsProcedure , viewModel . IndentEnumTypeAsProcedure ) ;
257
270
}
258
271
272
+ [ TestCategory ( "Settings" ) ]
259
273
[ TestMethod ]
260
274
public void IndentCompilerDirectivesIsSetInCtor ( )
261
275
{
@@ -265,6 +279,7 @@ public void IndentCompilerDirectivesIsSetInCtor()
265
279
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . IndentCompilerDirectives , viewModel . IndentCompilerDirectives ) ;
266
280
}
267
281
282
+ [ TestCategory ( "Settings" ) ]
268
283
[ TestMethod ]
269
284
public void IndentEntireProcedureBodyIsSetInCtor ( )
270
285
{
@@ -274,6 +289,7 @@ public void IndentEntireProcedureBodyIsSetInCtor()
274
289
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . IndentEntireProcedureBody , viewModel . IndentEntireProcedureBody ) ;
275
290
}
276
291
292
+ [ TestCategory ( "Settings" ) ]
277
293
[ TestMethod ]
278
294
public void IndentFirstCommentBlockIsSetInCtor ( )
279
295
{
@@ -283,6 +299,7 @@ public void IndentFirstCommentBlockIsSetInCtor()
283
299
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . IndentFirstCommentBlock , viewModel . IndentFirstCommentBlock ) ;
284
300
}
285
301
302
+ [ TestCategory ( "Settings" ) ]
286
303
[ TestMethod ]
287
304
public void IndentFirstDeclarationBlockIsSetInCtor ( )
288
305
{
@@ -292,6 +309,7 @@ public void IndentFirstDeclarationBlockIsSetInCtor()
292
309
Assert . AreEqual ( defaultConfig . UserSettings . IndenterSettings . IndentFirstDeclarationBlock , viewModel . IndentFirstDeclarationBlock ) ;
293
310
}
294
311
312
+ [ TestCategory ( "Settings" ) ]
295
313
[ TestMethod ]
296
314
public void IndentSpacesIsSetInCtor ( )
297
315
{
0 commit comments