Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Desafio Concluído! #74

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions TestesUnitarios.Desafio.Tests/ValidacoesListaTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,14 @@ public void NaoDeveConterONumero10NaLista()
var numeroParaProcurar = 10;

// Act
var resultado = _validacoes.ListaContemDeterminadoNumero(lista, numeroParaProcurar);

// Assert
Assert.False(resultado);
}

//TODO: Corrigir a anotação [Fact]
[Fact]
public void DeveMultiplicarOsElementosDaListaPor2()
{
//TODO: Implementar método de teste
Expand All @@ -58,8 +61,10 @@ public void DeveMultiplicarOsElementosDaListaPor2()
var resultadoEsperado = new List<int> { 10, 14, 16, 18 };

// Act
var resultado = _validacoes.MultiplicarNumerosLista(lista,2);

// Assert
Assert.Equal(resultado,resultado);
}

[Fact]
Expand All @@ -71,10 +76,11 @@ public void DeveRetornar9ComoMaiorNumeroDaLista()
var lista = new List<int> { 5, -1, -8, 9 };

// Act
var resultado = _validacoes.RetornarMaiorNumeroLista(lista);

// Assert
//TODO: Corrigir o Assert.Equal com base no retorno da chamada ao método
Assert.Equal(9, 9);
Assert.Equal(9, resultado);
}

[Fact]
Expand All @@ -90,6 +96,6 @@ public void DeveRetornarOitoNegativoComoMenorNumeroDaLista()

// Assert
//TODO: Corrigir o Assert.Equal com base no retorno da chamada ao método
Assert.Equal(-8, -8);
Assert.Equal(-8, resultado);
}
}
15 changes: 8 additions & 7 deletions TestesUnitarios.Desafio.Tests/ValidacoesStringTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ public class ValidacoesStringTests
{
private ValidacoesString _validacoes = new ValidacoesString();

[Fact]
[Fact]
public void DeveRetornar6QuantidadeCaracteresDaPalavraMatrix()
{
//TODO: Corrigir a variável "texto" e "resultadoEsperado" da seção Arrange

// Arrange
var texto = "a";
var resultadoEsperado = 0;
var texto = "Matrix";
var resultadoEsperado = 6;

// Act
var resultado = _validacoes.RetornarQuantidadeCaracteres(texto);
Expand All @@ -31,11 +31,11 @@ public void DeveContemAPalavraQualquerNoTexto()

//TODO: Corrigir a chamada do método "ContemCaractere" da seção Act
// Act
_validacoes.ContemCaractere(texto, textoProcurado);
var resultado = _validacoes.ContemCaractere(texto, textoProcurado);

// Assert
//TODO: Corrigir o Assert.True com base no retorno da chamada ao método
Assert.True(true);
Assert.True(resultado);
}

[Fact]
Expand All @@ -50,17 +50,18 @@ public void NaoDeveConterAPalavraTesteNoTexto()

// Assert
//TODO: Corrigir o Assert.False com base no retorno da chamada ao método
Assert.False(true);
Assert.False(resultado);
}

//TODO: Corrigir a anotação [Fact]
[Fact]
public void TextoDeveTerminarComAPalavraProcurado()
{
//TODO: Corrigir a variável "textoProcurado" seção Arrange

// Arrange
var texto = "Começo, meio e fim do texto procurado";
var textoProcurado = "teste";
var textoProcurado = "procurado";

// Act
var resultado = _validacoes.TextoTerminaCom(texto, textoProcurado);
Expand Down