File tree 2 files changed +7
-1
lines changed
FastExpressionCompiler.TestsRunner
FastExpressionCompiler.TestsRunner.Net472
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -337,6 +337,9 @@ void Run(Func<int> run, string name = null)
337
337
Run ( new Issue455_TypeAs_should_return_null ( ) . Run ) ;
338
338
Run ( new LightExpression . IssueTests . Issue455_TypeAs_should_return_null ( ) . Run ) ;
339
339
340
+ Run ( new Issue460_ArgumentException_when_converting_from_object_to_type_with_explicit_operator ( ) . Run ) ;
341
+ Run ( new LightExpression . IssueTests . Issue460_ArgumentException_when_converting_from_object_to_type_with_explicit_operator ( ) . Run ) ;
342
+
340
343
Console . WriteLine ( $ "{ Environment . NewLine } IssueTests are passing in { sw . ElapsedMilliseconds } ms.") ;
341
344
} ) ;
342
345
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public class Program
9
9
{
10
10
public static void Main ( )
11
11
{
12
- new LightExpression . IssueTests . Issue460_ArgumentException_when_converting_from_object_to_type_with_explicit_operator ( ) . Run ( ) ;
12
+ // new LightExpression.IssueTests.Issue460_ArgumentException_when_converting_from_object_to_type_with_explicit_operator().Run();
13
13
14
14
// todo: @wip add to FEC, check the possibility of the increment compilation and the artifacts reusability
15
15
// new LightExpression.UnitTests.ConstantAndConversionTests().Run();
@@ -376,6 +376,9 @@ void Run(Func<int> run, string name = null)
376
376
Run ( new Issue458_Support_TryFault ( ) . Run ) ;
377
377
Run ( new LightExpression . IssueTests . Issue458_Support_TryFault ( ) . Run ) ;
378
378
379
+ Run ( new Issue460_ArgumentException_when_converting_from_object_to_type_with_explicit_operator ( ) . Run ) ;
380
+ Run ( new LightExpression . IssueTests . Issue460_ArgumentException_when_converting_from_object_to_type_with_explicit_operator ( ) . Run ) ;
381
+
379
382
Console . WriteLine ( $ "{ Environment . NewLine } IssueTests are passing in { sw . ElapsedMilliseconds } ms.") ;
380
383
} ) ;
381
384
You can’t perform that action at this time.
0 commit comments