mirror of
https://github.com/bitwarden/mobile.git
synced 2024-12-22 16:18:21 +01:00
remove test example
This commit is contained in:
parent
732418d971
commit
350356b8db
@ -59,7 +59,6 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="KeyDerivationTests.cs" />
|
||||
<Compile Include="MainActivity.cs" />
|
||||
<Compile Include="TestSample.cs" />
|
||||
<Compile Include="Resources\Resource.Designer.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user