mirror of
https://github.com/bitwarden/mobile
synced 2025-12-17 08:43:21 +00:00
Android test project with Key Derivation Tests
This commit is contained in:
44
Android.Test/TestSample.cs
Normal file
44
Android.Test/TestSample.cs
Normal 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");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user