public void TestVirtualEntrypoint()
        {
            IIntf1 i1 = CreateAndConfigureMock();

            i1.VirtualGo();
            i1.VerifyAllExpectations();
        }
Exemple #2
0
        public void TestVirtualEntrypoint()
        {
            IIntf1 i1 = CreateAndConfigureMock();

            mMocks.ReplayAll();

            i1.VirtualGo();

            mMocks.VerifyAll();
        }