1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 00:03:22 +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,23 @@
using System.Reflection;
using Android.App;
using Android.OS;
using Xamarin.Android.NUnitLite;
namespace Android.Test
{
[Activity(Label = "Android.Test", MainLauncher = true, Icon = "@drawable/icon")]
public class MainActivity : TestSuiteActivity
{
protected override void OnCreate(Bundle bundle)
{
// tests can be inside the main assembly
AddTest(Assembly.GetExecutingAssembly());
// or in any reference assemblies
// AddTest (typeof (Your.Library.TestClass).Assembly);
// Once you called base.OnCreate(), you cannot add more assemblies.
base.OnCreate(bundle);
}
}
}