2013-06-14 00:14:50 -04:00
|
|
|
|
using System;
|
2013-06-25 15:27:41 -04:00
|
|
|
|
using System.Collections.Generic;
|
2013-06-14 00:14:50 -04:00
|
|
|
|
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
|
2013-12-12 04:24:24 -05:00
|
|
|
|
//runner.AddTests(Assembly.GetExecutingAssembly());
|
|
|
|
|
//runner.AddTests(new List<Type> { typeof(TestSynchronizeCachedDatabase)});
|
2014-01-25 22:38:12 -05:00
|
|
|
|
//runner.AddTests(typeof(TestLoadDb).GetMethod("LoadErrorWithCertificateTrustFailure"));
|
|
|
|
|
|
|
|
|
|
//runner.AddTests(new List<Type> { typeof(TestLoadDb) });
|
2013-08-06 16:21:58 -04:00
|
|
|
|
//runner.AddTests(new List<Type> { typeof(TestCachingFileStorage) });
|
2014-01-25 22:38:12 -05:00
|
|
|
|
runner.AddTests(typeof(TestLoadDb).GetMethod("TestLoadKdb1"));
|
2014-01-26 08:27:27 -05:00
|
|
|
|
//runner.AddTests(typeof(TestLoadDb).GetMethod("TestLoadWithKeyfileOnly"));
|
|
|
|
|
//runner.AddTests(typeof(TestLoadDb).GetMethod("TestLoadKdbpWithPasswordOnly"));
|
|
|
|
|
//runner.AddTests(typeof(TestSaveDb).GetMethod("TestLoadKdbxAndSaveKdbp_TestIdenticalFiles"));
|
2013-06-14 00:14:50 -04:00
|
|
|
|
return runner;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|