Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: codingseb/ExpressionEvaluator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.4.2.0
Choose a base ref
...
head repository: codingseb/ExpressionEvaluator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 4,555 additions and 1,199 deletions.
  1. +4 −0 .editorconfig
  2. +11 −7 CodingSeb.ExpressionEvaluator.Tests/CodingSeb.ExpressionEvaluator.Tests.csproj
  3. +386 −172 CodingSeb.ExpressionEvaluator.Tests/ExpressionEvaluatorScriptEvaluateTests.cs
  4. +1,345 −28 CodingSeb.ExpressionEvaluator.Tests/ExpressionEvaluatorTests.cs
  5. +15 −0 CodingSeb.ExpressionEvaluator.Tests/GlobalSuppressions.cs
  6. +1 −0 CodingSeb.ExpressionEvaluator.Tests/OthersTests.cs
  7. +219 −1 CodingSeb.ExpressionEvaluator.Tests/Resources.Designer.cs
  8. +48 −0 CodingSeb.ExpressionEvaluator.Tests/Resources.resx
  9. +3 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0061.txt
  10. +2 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0062.txt
  11. +4 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0063.txt
  12. +4 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0064.txt
  13. +4 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0065.txt
  14. +9 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0066.txt
  15. +4 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0067.txt
  16. +8 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0068.txt
  17. +11 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0069.txt
  18. +4 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0070.txt
  19. +7 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0071.txt
  20. +7 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0100.txt
  21. +7 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0101.txt
  22. +6 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0103.txt
  23. +4 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0104.txt
  24. +6 −0 CodingSeb.ExpressionEvaluator.Tests/Resources/Script0105.txt
  25. +20 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ClassForImplicitParameter.cs
  26. +25 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ClassForIndexing.cs
  27. +5 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ClassForTest1.cs
  28. +5 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ClassInOtherNameSpace1.cs
  29. +0 −1 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ClassStructContainer.cs
  30. +24 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ClassWithNonPublicMembersAndMethods.cs
  31. +12 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ContextObject1.cs
  32. +12 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ExceptionGenerator.cs
  33. +78 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/MethodArgKeywordClass.cs
  34. +7 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/ObjectContainer.cs
  35. +13 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/Person1.cs
  36. +12 −0 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/Person2.cs
  37. +6 −2 CodingSeb.ExpressionEvaluator.Tests/TestsUtils/XExpressionEvaluator2.cs
  38. +12 −8 CodingSeb.ExpressionEvaluator.sln
  39. +26 −12 CodingSeb.ExpressionEvaluator/CodingSeb.ExpressionEvaluator.csproj
  40. +2,074 −560 CodingSeb.ExpressionEvaluator/ExpressionEvaluator.cs
  41. +8 −0 CodingSeb.ExpressionEvaluator/GlobalSuppressions.cs
  42. +47 −8 README.md
  43. +0 −6 TryWindow/App.config
  44. +10 −0 TryWindow/AssemblyInfo.cs
  45. +9 −1 TryWindow/MainWindow.xaml
  46. +13 −10 TryWindow/MainWindow.xaml.cs
  47. +0 −53 TryWindow/Properties/AssemblyInfo.cs
  48. +0 −71 TryWindow/Properties/Resources.Designer.cs
  49. +0 −117 TryWindow/Properties/Resources.resx
  50. +0 −30 TryWindow/Properties/Settings.Designer.cs
  51. +0 −7 TryWindow/Properties/Settings.settings
  52. +18 −100 TryWindow/TryWindow.csproj
  53. +0 −5 TryWindow/packages.config
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[*.cs]

# CS1591:
dotnet_diagnostic.CS1591.severity = none
Original file line number Diff line number Diff line change
@@ -4,15 +4,19 @@
<Company>Coding Seb</Company>
<Product>CodingSeb.ExpressionEvaluator.Tests</Product>
<Copyright>Copyright © Coding Seb 2018</Copyright>
<TargetFrameworks>net45;netcoreapp2.0</TargetFrameworks>
<TargetFrameworks>net47</TargetFrameworks>
<UserSecretsId>c4ac27fa-8b9c-4784-a284-7a9a06320537</UserSecretsId>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
<PackageReference Include="Shouldly" Version="3.0.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Shouldly" Version="4.2.1" />
</ItemGroup><ItemGroup>
<Compile Update="OthersTests.cs" />
<Compile Update="Resources.Designer.cs">
<AutoGen>True</AutoGen>
Loading