以下に小さなサンプル ファクトリ パターンの実装がありますが、コード カバレッジを最大化するために、誰かが適切な Moq ユニット テスト ケースの作成を手伝ってくれるかどうか疑問に思っていました。
public class TestClass
{
private readonly IService service;
public TestClass(Iservice service)
{
this.service = service;
}
public void Method(string test)
{
service = TestMethod(test);
service.somemethod();
}
private IService TestMethod(string test)
{
if(test == 'A')
service = new A();
if(test == 'B')
service = new B();
return service;
}
}
私はモックを送信するときにTestClassとさらに重要なTestMethodをテストする際の助けを探しています。たとえば、私のテストメソッドは以下になります:
[TestMethod]
public void TestCaseA()
{
Mock<IService> serviceMock = new Mock<Iservice>(MockBehaviour.strict);
TestClass tClass = new TestClass(serviceMock.Object);
// The Question is, what is best approach to test this scenario ?
// If i go with below approach, new A() will override serviceMock
// which i am passing through constructor.
var target = tClass.Method("A");
}