Beispiel #1
0
        public void ShouldBeValid()
        {
            var report = new ExpenseReport();

            report.Status = ExpenseReportStatus.Draft;
            var employee = new Employee();

            report.Submitter = employee;

            var command = new DraftToCancelledCommand();

            Assert.That(command.IsValid(new ExecuteTransitionCommand(report, null, employee, new DateTime())), Is.True);
        }
Beispiel #2
0
        public void ShouldNotBeValidWithWrongEmployee()
        {
            var report = new ExpenseReport();

            report.Status = ExpenseReportStatus.Cancelled;
            var employee = new Employee();

            report.Approver = employee;

            var command = new DraftToCancelledCommand();

            Assert.That(command.IsValid(new ExecuteTransitionCommand(report, null, employee, new DateTime())), Is.False);
        }
Beispiel #3
0
        public void ShouldNotBeValidInWrongStatus()
        {
            var order = new ExpenseReport();

            order.Status = ExpenseReportStatus.Draft;
            var employee = new Employee();

            order.Approver = employee;

            var command = new DraftToCancelledCommand();

            Assert.That(command.IsValid(new ExecuteTransitionCommand(order, null, employee, new DateTime())), Is.False);
        }