1
0
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:
Kyle Spearrin
2016-08-01 20:49:04 -04:00
parent 6f800896c3
commit 23097072ef
13 changed files with 3526 additions and 3268 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");
}
}
}