Skip to content

Commit 7313f1a

Browse files
committed
added the dadhi#460 to test runner
1 parent 14f754b commit 7313f1a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

test/FastExpressionCompiler.TestsRunner.Net472/Program.cs

+3
Original file line numberDiff line numberDiff 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

test/FastExpressionCompiler.TestsRunner/Program.cs

+4-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)