You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Tests for inline namespaces (some still fail)
version unstable
* Support for Inlinenamespaces OK + add OptionInlineNamespacesEvaluationActive + Refactoring
* Version 1.3.2.0
* perf improvement for type resolution
* Doc to wiki
* Absolutes links on wiki (so it works from local and any branch)
@@ -492,7 +494,7 @@ public void TypeTesting(string expression, Type type)
492
494
[TestCase("new ClassForTest1().GetType()",ExpectedResult=typeof(ClassForTest1),Category="Create instance with new Keyword")]
493
495
[TestCase("new ClassForTest2(15).GetType()",ExpectedResult=typeof(ClassForTest2),Category="Create instance with new Keyword")]
494
496
[TestCase("new ClassForTest2(15).Value1",ExpectedResult=15,Category="Create instance with new Keyword")]
495
-
[TestCase("new CodingSeb.ExpressionEvaluator.Tests.OtherNamespace.ClassInOtherNameSpace1().Value1",ExpectedResult=26,Category="Create instance with new Keyword")]
497
+
[TestCase("new CodingSeb.ExpressionEvaluator.Tests.OtherNamespace.ClassInOtherNameSpace1().Value1",ExpectedResult=26,Category="Create instance with new Keyword,Inline namespace")]
496
498
[TestCase("new Regex(@\"\\w*[n]\\w*\").Match(\"Which word contains the desired letter ?\").Value",ExpectedResult="contains",Category="Create instance with new Keyword")]
497
499
#endregion
498
500
@@ -859,11 +861,14 @@ public void TypeTesting(string expression, Type type)
[TestCase("$\"https://www.google.ch/search?q={System.Net.WebUtility.UrlEncode(\"test of request with url encode() ?\")}\"",ExpectedResult="https://www.google.ch/search?q=test+of+request+with+url+encode()+%3F",Category="Complex expression,Inline namespace")]
0 commit comments