diff --git a/TheGameExtreme.sln b/TheGameExtreme.sln index 6680534..91580fa 100644 --- a/TheGameExtreme.sln +++ b/TheGameExtreme.sln @@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheGameExtreme.iOS", "TheGa EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheGameExtreme", "TheGameExtreme\TheGameExtreme.csproj", "{8DE6C881-FF77-4CC4-B8C4-CDEDD9AB13B3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -55,17 +53,5 @@ Global {8DE6C881-FF77-4CC4-B8C4-CDEDD9AB13B3}.Debug|iPhone.Build.0 = Debug|Any CPU {8DE6C881-FF77-4CC4-B8C4-CDEDD9AB13B3}.Release|iPhone.ActiveCfg = Release|Any CPU {8DE6C881-FF77-4CC4-B8C4-CDEDD9AB13B3}.Release|iPhone.Build.0 = Release|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Debug|Any CPU.Build.0 = Debug|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Release|Any CPU.ActiveCfg = Release|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Release|Any CPU.Build.0 = Release|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Release|iPhoneSimulator.Build.0 = Release|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Debug|iPhone.Build.0 = Debug|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Release|iPhone.ActiveCfg = Release|Any CPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16}.Release|iPhone.Build.0 = Release|Any CPU EndGlobalSection EndGlobal diff --git a/test/AppInitializer.cs b/test/AppInitializer.cs deleted file mode 100644 index 903495b..0000000 --- a/test/AppInitializer.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.IO; -using System.Linq; -using Xamarin.UITest; -using Xamarin.UITest.Queries; - -namespace test -{ - public class AppInitializer - { - public static IApp StartApp(Platform platform) - { - // TODO: If the iOS or Android app being tested is included in the solution - // then open the Unit Tests window, right click Test Apps, select Add App Project - // and select the app projects that should be tested. - // - // The iOS project should have the Xamarin.TestCloud.Agent NuGet package - // installed. To start the Test Cloud Agent the following code should be - // added to the FinishedLaunching method of the AppDelegate: - // - // #if ENABLE_TEST_CLOUD - // Xamarin.Calabash.Start(); - // #endif - if (platform == Platform.Android) - { - return ConfigureApp - .Android - // TODO: Update this path to point to your Android app and uncomment the - // code if the app is not included in the solution. - //.ApkFile ("../../../Droid/bin/Debug/xamarinforms.apk") - .StartApp(); - } - - return ConfigureApp - .iOS - // TODO: Update this path to point to your iOS app and uncomment the - // code if the app is not included in the solution. - //.AppBundle ("../../../iOS/bin/iPhoneSimulator/Debug/XamarinForms.iOS.app") - .StartApp(); - } - } -} diff --git a/test/Tests.cs b/test/Tests.cs deleted file mode 100644 index 998faa6..0000000 --- a/test/Tests.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System; -using System.IO; -using System.Linq; -using NUnit.Framework; -using Xamarin.UITest; -using Xamarin.UITest.Queries; - -namespace test -{ - [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); - } - - [Test] - public void AppLaunches() - { - app.Screenshot("First screen."); - } - } -} diff --git a/test/packages.config b/test/packages.config deleted file mode 100644 index 176a0b4..0000000 --- a/test/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/test/test.csproj b/test/test.csproj deleted file mode 100644 index dc35c9b..0000000 --- a/test/test.csproj +++ /dev/null @@ -1,46 +0,0 @@ - - - - Debug - AnyCPU - {72B8F38B-0C7B-4F91-9C48-AB4054B1EE16} - Library - test - test - v4.7.2 - - - true - full - false - bin\Debug - DEBUG; - prompt - 4 - - - true - bin\Release - prompt - 4 - - - - - ..\packages\NUnit.2.6.3\lib\nunit.framework.dll - - - - - - - - - - - - - - - - \ No newline at end of file