@@ -159,12 +159,12 @@ public RunOnOSs RunOnOSs
159
159
this . runOnOSs = value ;
160
160
161
161
var ignores = new List < string > ( ) ;
162
- if ( Utilities . IsRunningOnWindows &&
162
+ if ( TestUtilities . IsRunningOnWindows &&
163
163
! value . HasFlag ( RunOnOSs . Windows ) )
164
164
{
165
165
ignores . Add ( "NotWindows" ) ;
166
166
}
167
- if ( ! Utilities . IsRunningOnWindows &&
167
+ if ( ! TestUtilities . IsRunningOnWindows &&
168
168
! value . HasFlag ( RunOnOSs . Posix ) )
169
169
{
170
170
ignores . Add ( "NotPosix" ) ;
@@ -195,12 +195,12 @@ public RunOnPlatforms RunOnPlatforms
195
195
this . runOnPlatforms = value ;
196
196
197
197
var ignores = new List < string > ( ) ;
198
- if ( ! Utilities . IsRunningOnMono &&
198
+ if ( ! TestUtilities . IsRunningOnMono &&
199
199
! value . HasFlag ( RunOnPlatforms . DotNet ) )
200
200
{
201
201
ignores . Add ( "NotDotNet" ) ;
202
202
}
203
- if ( Utilities . IsRunningOnMono &&
203
+ if ( TestUtilities . IsRunningOnMono &&
204
204
! value . HasFlag ( RunOnPlatforms . Mono ) )
205
205
{
206
206
ignores . Add ( "NotMono" ) ;
@@ -237,58 +237,5 @@ public void AfterTest(ITest test)
237
237
{
238
238
// TODO: delegates to test native code.
239
239
}
240
-
241
- #if false
242
- private static object ? [ ] ConvertToArgumentsType ( object ? [ ] args , Type [ ] argumentTypes ) =>
243
- args . Zip ( argumentTypes , ConvertToArgumentType ) . ToArray ( ) ;
244
-
245
- private static object ? ConvertToArgumentType ( object ? value , Type argumentType )
246
- {
247
- // This is helper function that convert between raw value type and argument type.
248
- // Because .NET attribute can't have complex type arguments.
249
- if ( value == null )
250
- {
251
- return null ;
252
- }
253
- else if ( value . GetType ( ) == argumentType )
254
- {
255
- return value ;
256
- }
257
- else if ( argumentType == typeof ( IntPtr ) )
258
- {
259
- if ( value is int )
260
- {
261
- return new IntPtr ( ( int ) value ) ;
262
- }
263
- else if ( value is long )
264
- {
265
- return new IntPtr ( ( long ) value ) ;
266
- }
267
- else
268
- {
269
- throw new InvalidCastException ( ) ;
270
- }
271
- }
272
- else if ( argumentType == typeof ( UIntPtr ) )
273
- {
274
- if ( value is uint )
275
- {
276
- return new UIntPtr ( ( uint ) value ) ;
277
- }
278
- else if ( value is ulong )
279
- {
280
- return new UIntPtr ( ( ulong ) value ) ;
281
- }
282
- else
283
- {
284
- throw new InvalidCastException ( ) ;
285
- }
286
- }
287
- else
288
- {
289
- return Convert . ChangeType ( value , argumentType ) ;
290
- }
291
- }
292
- #endif
293
240
}
294
241
}
0 commit comments