예제 #1
0
 public void Domain_Emprestimo_Deveria_Calcular_Multa_Sem_Multa()
 {
     _emprestimo = ObjectMother.GetEmprestimo();
     _emprestimo.DataDevolucao = DateTime.Now;
     _emprestimo.CalcularValorMulta(DateTime.Now);
     _emprestimo.valorMulta.Should().Be(0);
 }