public interface IMyIntListRepo
public class MyIntListRepo : IMyIntListRepo
throw new NotImplementedException();
public void Remove(int i)
throw new NotImplementedException();
public class MyListUtility
IMyIntListRepo _myIntListRepo;
public MyListUtility(IMyIntListRepo myIntListRepo)
_myIntListRepo = myIntListRepo;
throw new NotImplementedException();
public void Remove(int i)
throw new NotImplementedException();
private Mock<IMyIntListRepo> myIntListRepoMock;
myIntListRepoMock = new Mock<IMyIntListRepo>();
MyListUtility myListUtility = new MyListUtility(myIntListRepoMock.Object);
public void TestAddWorks(int i)
throw new NotImplementedException();
public void TestRemoveWorks(int i)
throw new NotImplementedException();
public static void Main()
Console.WriteLine("Hello World");