mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-12 04:25:09 -05:00
28 lines
644 B
C#
28 lines
644 B
C#
|
using System;
|
|||
|
|
|||
|
using Android.App;
|
|||
|
using Android.Content;
|
|||
|
using Android.Runtime;
|
|||
|
using Android.Views;
|
|||
|
using Android.Widget;
|
|||
|
using Android.OS;
|
|||
|
using MonoDroidUnitTesting;
|
|||
|
using System.Reflection;
|
|||
|
|
|||
|
namespace Kp2aUnitTests
|
|||
|
{
|
|||
|
[Activity(Label = "MonoDroidUnit", MainLauncher = true, Icon = "@drawable/icon")]
|
|||
|
public class MainActivity : GuiTestRunnerActivity
|
|||
|
{
|
|||
|
protected override TestRunner CreateTestRunner()
|
|||
|
{
|
|||
|
TestRunner runner = new TestRunner();
|
|||
|
// Run all tests from this assembly
|
|||
|
runner.AddTests(Assembly.GetExecutingAssembly());
|
|||
|
return runner;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|