sharee.bike-App/SharedBusinessLogic.Tests_old/Tests.cs

31 lines
545 B
C#
Raw Permalink Normal View History

2021-07-12 21:31:46 +02:00
using System;
using System.IO;
using System.Linq;
using NUnit.Framework;
using Xamarin.UITest;
using Xamarin.UITest.Queries;
2024-04-09 12:53:23 +02:00
namespace SharedBusinessLogic.Tests
2021-07-12 21:31:46 +02:00
{
[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);
}
}
}