diff --git a/test/Android.Test/Android.Test.csproj b/test/Android.Test/Android.Test.csproj index 593ee075c..41c36cbfb 100644 --- a/test/Android.Test/Android.Test.csproj +++ b/test/Android.Test/Android.Test.csproj @@ -59,7 +59,6 @@ - diff --git a/test/Android.Test/TestSample.cs b/test/Android.Test/TestSample.cs deleted file mode 100644 index 8f4315114..000000000 --- a/test/Android.Test/TestSample.cs +++ /dev/null @@ -1,44 +0,0 @@ -using System; -using NUnit.Framework; - - -namespace Bit.Android.Test -{ - [TestFixture] - public class TestsSample - { - - [SetUp] - public void Setup() { } - - - [TearDown] - public void Tear() { } - - [Test] - public void Pass() - { - Console.WriteLine("test1"); - Assert.True(true); - } - - [Test] - public void Fail() - { - Assert.False(true); - } - - [Test] - [Ignore("another time")] - public void Ignore() - { - Assert.True(false); - } - - [Test] - public void Inconclusive() - { - Assert.Inconclusive("Inconclusive"); - } - } -} \ No newline at end of file