/// ------------------------------------------------------------------------------------
        /// <summary>
        /// Override to end the undoable UOW, Undo everything, and 'commit',
        /// which will essentially clear out the Redo stack.
        /// </summary>
        /// ------------------------------------------------------------------------------------
        public override void TestTearDown()
        {
            m_draftView.CloseRootBox();
            m_draftView.Dispose();
            m_draftView = null;

            base.TestTearDown();
        }
예제 #2
0
        public override void Exit()
        {
            CheckDisposed();

            m_draftView.CloseRootBox();
            m_draftView.Dispose();
            m_draftView = null;

            base.Exit();
        }