public void CalculaJuros_Sucesso()
        {
            //arrange
            var urlGithub = "https://github.com/LucasLopesZanet/Desafio";


            //act
            var urlGithubRetorno = new ShowCodeController().ShowmeTheCode().Result;

            //assert
            Assert.True(urlGithubRetorno == urlGithub);
        }
Ejemplo n.º 2
0
 public ShowCodeUnitTest()
 {
     _controller = new ShowCodeController();
 }