Skip to content

Commit

Permalink
Fix ncrunch.
Browse files Browse the repository at this point in the history
  • Loading branch information
grokys committed Jan 30, 2021
1 parent d53920b commit 1a39210
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .ncrunch/Avalonia.MicroCom.v3.ncrunchproject
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
<ProjectConfiguration>
<Settings>
<IgnoreThisComponentCompletely>True</IgnoreThisComponentCompletely>
</Settings>
<Settings />
</ProjectConfiguration>
3 changes: 3 additions & 0 deletions .ncrunch/Avalonia.Win32.v3.ncrunchproject
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<ProjectConfiguration>
<Settings>
<AdditionalFilesToIncludeForProject>
<Value>..\..\tools\MicroComGenerator\bin\Debug\netcoreapp3.1\**.*</Value>
</AdditionalFilesToIncludeForProject>
<HiddenComponentWarnings>
<Value>MissingOrIgnoredProjectReference</Value>
</HiddenComponentWarnings>
Expand Down
1 change: 1 addition & 0 deletions .ncrunch/Direct3DInteropSample.v3.ncrunchproject
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<HiddenComponentWarnings>
<Value>MissingOrIgnoredProjectReference</Value>
</HiddenComponentWarnings>
<IgnoreThisComponentCompletely>True</IgnoreThisComponentCompletely>
<PreviouslyBuiltSuccessfully>True</PreviouslyBuiltSuccessfully>
</Settings>
</ProjectConfiguration>
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using Avalonia.Controls.Shapes;
using Avalonia.Data;
using Avalonia.Markup.Xaml.Converters;
using Xunit;

namespace Avalonia.Markup.Xaml.UnitTests.Converters
{
public class PointsListTypeConverterTests
{
static PointsListTypeConverterTests()
{
RuntimeHelpers.RunClassConstructor(typeof(RelativeSource).TypeHandle);
}

[Theory]
[InlineData("1,2 3,4")]
[InlineData("1 2 3 4")]
Expand Down

0 comments on commit 1a39210

Please sign in to comment.