Exemplo n.º 1
0
 public void mementoTest()
 {
     YuvVideoHandler yvh = new YuvVideoHandler();
     Memento mem = yvh.getMemento();
     yvh.setMemento(mem); // nothing is supposed to happen after calling this
     Assert.IsNull(mem.state);
     Assert.AreEqual("MementoStub", mem.name);
 }