示例#1
0
        private static void Intercept_method_receiving_enum()
        {
            var sut = CreateSut("MockLibrary.SayHello.ReceiveEnum", typeof(SayHelloMonitor));

            sut.Start();
            var mock = new SayHello("World");

            mock.PassEnum();
            sut.Stop();
        }