mirror of
https://github.com/bitwarden/android.git
synced 2025-01-02 06:17:35 +03:00
44 lines
711 B
C#
44 lines
711 B
C#
|
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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|