mirror of
https://github.com/abdelkader/vCardEditor
synced 2025-12-12 08:27:19 +07:00
Picture added, and some refactoring
This commit is contained in:
@@ -3,6 +3,10 @@ using System.Text;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using VCFEditor;
|
||||
using VCFEditor.View;
|
||||
using Moq;
|
||||
using VCFEditor.Presenter;
|
||||
|
||||
namespace vCardEditor_Test
|
||||
{
|
||||
@@ -12,20 +16,16 @@ namespace vCardEditor_Test
|
||||
[TestClass]
|
||||
public class MainPresenterTest
|
||||
{
|
||||
public MainPresenterTest()
|
||||
{
|
||||
//
|
||||
// TODO:
|
||||
//
|
||||
}
|
||||
|
||||
|
||||
|
||||
[TestMethod]
|
||||
public void TestMethod1()
|
||||
public void NewFileOpenedTest()
|
||||
{
|
||||
//
|
||||
// TODO:
|
||||
//
|
||||
var repo = new Mock<IContactRepository>();
|
||||
var view = new Mock<IMainView>();
|
||||
|
||||
var presenter = new MainPresenter(view.Object, repo.Object);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user