Skip to content

Instantly share code, notes, and snippets.

@StephanyBatista
Last active November 8, 2018 00:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StephanyBatista/14fe07c3abb4793bb80edf352abeab10 to your computer and use it in GitHub Desktop.
Save StephanyBatista/14fe07c3abb4793bb80edf352abeab10 to your computer and use it in GitHub Desktop.
[Fact]
public void DeveCriarCurso()
{
var curso = new Curso(nomeEsperado, descricaoEsperada, valorEsperado);
Assert.Equal(nomeEsperado, curso.Nome);
Assert.Equal(descricaoEsperada, curso.Descricao);
Assert.Equal(valorEsperado, curso.Valor);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment