1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-20 10:13:42 +00:00

Moved android test project

This commit is contained in:
Kyle Spearrin
2016-08-01 21:49:32 -04:00
parent 69fa9d33f8
commit 732418d971
13 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,44 @@
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");
}
}
}