keepass2android/src/Kp2aUnitTests/ProgressDialogStub.cs
Philipp Crocoll 84aeb31fd0 * Introduced IFileStorage interface: Better abstraction than current IOConnection (suitable for cloud support). Currently only implemented by the built-in IOConnection (local/http/ftp)
* Implemented Merge functionality for SaveDB. UI is not yet implemented!
* Added tests for merge functionality
2013-07-09 09:59:17 +02:00

35 lines
513 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using keepass2android;
namespace Kp2aUnitTests
{
class ProgressDialogStub : IProgressDialog
{
public void SetTitle(string title)
{
}
public void SetMessage(string resourceString)
{
Kp2aLog.Log("Progress message: " + resourceString);
}
public void Dismiss()
{
Dismissed = true;
}
public void Show()
{
Showed = true;
}
protected bool Showed { get; set; }
public bool Dismissed { get; set; }
}
}