public void DeveRetornarUmaNotificacaoPorInformarADescricaoMaiorQueValorLimiteAoAlterar() { var classe = new Competencia(); classe.Alterar(Guid.NewGuid(), "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type an"); classe.Notifications.Count.Should().Be(1); }
public void NaoDeveRetornarUmaNotificacaoPorInformarADescricaoAoAlterar() { var classe = new Competencia(); classe.Alterar(Guid.NewGuid(), "Descrição"); classe.Notifications.Count.Should().Be(0); }