mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
30 lines
545 B
C#
30 lines
545 B
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using Xamarin.UITest;
|
|
using Xamarin.UITest.Queries;
|
|
|
|
namespace SharedBusinessLogic.Tests
|
|
{
|
|
[TestFixture(Platform.Android)]
|
|
[TestFixture(Platform.iOS)]
|
|
public class Tests
|
|
{
|
|
IApp app;
|
|
Platform platform;
|
|
|
|
public Tests(Platform platform)
|
|
{
|
|
this.platform = platform;
|
|
}
|
|
|
|
[SetUp]
|
|
public void BeforeEachTest()
|
|
{
|
|
app = AppInitializer.StartApp(platform);
|
|
}
|
|
|
|
}
|
|
}
|
|
|