File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
FastExpressionCompiler.TestsRunner.Net472
FastExpressionCompiler.TestsRunner Expand file tree Collapse file tree 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)
337337 Run ( new Issue455_TypeAs_should_return_null ( ) . Run ) ;
338338 Run ( new LightExpression . IssueTests . Issue455_TypeAs_should_return_null ( ) . Run ) ;
339339
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+
340343 Console . WriteLine ( $ "{ Environment . NewLine } IssueTests are passing in { sw . ElapsedMilliseconds } ms.") ;
341344 } ) ;
342345
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public class Program
99 {
1010 public static void Main ( )
1111 {
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();
1313
1414 // todo: @wip add to FEC, check the possibility of the increment compilation and the artifacts reusability
1515 // new LightExpression.UnitTests.ConstantAndConversionTests().Run();
@@ -376,6 +376,9 @@ void Run(Func<int> run, string name = null)
376376 Run ( new Issue458_Support_TryFault ( ) . Run ) ;
377377 Run ( new LightExpression . IssueTests . Issue458_Support_TryFault ( ) . Run ) ;
378378
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+
379382 Console . WriteLine ( $ "{ Environment . NewLine } IssueTests are passing in { sw . ElapsedMilliseconds } ms.") ;
380383 } ) ;
381384
You can’t perform that action at this time.
0 commit comments