Esempio n. 1
0
 public void changeTableState()
 {
     States expectedState = States.Closed;
     Table t = new Table { TableNumber = "02", StateId = 1 };
     t.Close();
     Assert.AreEqual(expectedState, (t as ITable).State);
 }