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:
23
Android.Test/MainActivity.cs
Normal file
23
Android.Test/MainActivity.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user