committed by
GitHub
113 changed files with 714 additions and 370 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,13 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
<PropertyGroup> |
|||
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks> |
|||
<PackageId>Avalonia.Fonts.Inter</PackageId> |
|||
</PropertyGroup> |
|||
<ItemGroup> |
|||
<AvaloniaResource Include="Assets\*" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ProjectReference Include="..\Avalonia.Base\Avalonia.Base.csproj" /> |
|||
</ItemGroup> |
|||
<Import Project="..\..\build\BuildTargets.targets" /> |
|||
</Project> |
|||
@ -0,0 +1,3 @@ |
|||
using Avalonia.Metadata; |
|||
|
|||
[assembly: XmlnsDefinition("https://github.com/avaloniaui", "Avalonia.Fonts.Inter")] |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,14 @@ |
|||
using Xunit; |
|||
|
|||
namespace Avalonia.IntegrationTests.Appium |
|||
{ |
|||
[CollectionDefinition("Default")] |
|||
public class DefaultCollection : ICollectionFixture<DefaultAppFixture> |
|||
{ |
|||
} |
|||
|
|||
[CollectionDefinition("OverlayPopups")] |
|||
public class OverlayPopupsCollection : ICollectionFixture<OverlayPopupsAppFixture> |
|||
{ |
|||
} |
|||
} |
|||
@ -1,9 +0,0 @@ |
|||
using Xunit; |
|||
|
|||
namespace Avalonia.IntegrationTests.Appium |
|||
{ |
|||
[CollectionDefinition("Default")] |
|||
public class DefaultCollection : ICollectionFixture<TestAppFixture> |
|||
{ |
|||
} |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
using OpenQA.Selenium.Appium; |
|||
|
|||
namespace Avalonia.IntegrationTests.Appium |
|||
{ |
|||
public class OverlayPopupsAppFixture : DefaultAppFixture |
|||
{ |
|||
protected override void ConfigureWin32Options(AppiumOptions options) |
|||
{ |
|||
base.ConfigureWin32Options(options); |
|||
options.AddAdditionalCapability("appArguments", "--overlayPopups"); |
|||
} |
|||
|
|||
protected override void ConfigureMacOptions(AppiumOptions options) |
|||
{ |
|||
base.ConfigureMacOptions(options); |
|||
options.AddAdditionalCapability("appium:arguments", new[] { "--overlayPopups" }); |
|||
} |
|||
} |
|||
} |
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue