■ サンプル モック対象インターフェイス namespace NUnitForm { public interface ISampleInterface { int Sum(int value1, int value2); int Max(int value1, int value2); } } テストコード using System; using NUnit.Framework; using Moq; // 追加 using NUnitForm; namespace FormTest { [TestFixture] // テストコ…