Beispiel #1
0
        public void FormaPgtoIncluir()
        {
            // Arrange
            var forma = new FormaPgto {
                AlteradoPor = 1, Descricao = "DINHEIRO"
            };

            // Act
            var id = service.Gravar(forma);

            // Assert
            Assert.AreNotEqual(0, id);
        }