Exemplo n.º 1
0
        public void ExpenditureWaybill_CancelAcceptance_Must_Set_DraftState()
        {
            waybill.Accept(prices, false, user.Object, DateTime.Now);

            waybill.CancelAcceptance(false);

            Assert.AreEqual(ExpenditureWaybillState.Draft, waybill.State);
        }