Ejemplo n.º 1
0
        public TestStateManager(ITestConverter converter, Test test)
        {
            _converter = converter;
            _test = test;
            _history = new VersionHistory();

            _undoCommand = new ActionCommand(undo);
            _redoCommand = new ActionCommand(redo);

            Version(null);
            RecordSnapshot();
        }
Ejemplo n.º 2
0
 public void SetUp()
 {
     history = new VersionHistory();
 }