Example #1
0
        public void GenerateVoidMethodArguments()
        {
            StubClass stub = new StubClass();

            Assert.Throws <NotImplementedException>(() => stub.Void("First", "Second", "Third"));
        }
Example #2
0
        public void GenerateVoidMethod()
        {
            StubClass stub = new StubClass();

            Assert.Throws <NotImplementedException>(() => stub.Void());
        }