No tienes acceso a esta clase

¡Continúa aprendiendo! Únete y comienza a potenciar tu carrera

Atributos Theory e InlineData

9/19
Recursos

Aportes 7

Preguntas 3

Ordenar por:

¿Quieres ver más aportes, preguntas y respuestas de la comunidad?

Mi test de IsPalindrome usando Theory e InLineData \[Theory] \[InlineData("oro",true)] \[InlineData("hello", false)] public void IsPalindromeTest(string word, bool expected) { var strOperations = new StringOperations(); var result = strOperations.IsPalindrome(word); if (expected) { Assert.True(result); } else { Assert.False(result); } }
Esta es mi implementacion de QuantityInWords, tuve que reemplazar el .StartsWith() y el contains para evitar pasar mas parametros a la funcion :d \[Theory] \[InlineData("car", 10, "ten cars")] \[InlineData("country", 4, "four countries")] \[InlineData("dog", 1, "one dog")] \[InlineData("tree", 100, "one hundred trees")] public void QuantityInWordsTest(string input, int quantity, string expected) { // Arrange var operations = new StringOperations(); // Act var result = operations.QuantintyInWords(input, quantity); //Assert Assert.NotEmpty(result); Assert.Equal(expected, result); }
Mi ejercicio con IsPalindrome\_Theory \[Theory] \[InlineData("ama")] \[InlineData("rama")] \[InlineData("caac")] public void IsPalindrome\_Theory(string palabra) { // Arrange var strOperation = new StringOperations(); //Act var result = strOperation.IsPalindrome(palabra); // Assert Assert.True(result); }
De esta forma hice las dos pruebas en el GetStringLength ![]()![](https://static.platzi.com/media/user_upload/Captura%20de%20pantalla%202023-10-19%20a%20la%28s%29%201.33.20%E2%80%AFp.%C2%A0m.-13cab0a4-a2e6-49f4-b896-fddcfcc598e9.jpg)
en el codigo siguiente, si remuevo el `else` entonces la prueba tambien pasa valida, como si estuviera haciendo el `Assert.False`, hay una forma de evitar esto? o que opcion hay? ```c# [Theory] [InlineData("ama", true)] [InlineData("other", false)] public void IsPalindromeTest(string word, bool expected) { // Arrange var strOperations = new StringOperations(); // Act var result = strOperations.IsPalindrome(word); // assert if (expected) { Assert.True(result); } else { Assert.False(result); } } ``` \[Theory] \[InlineData("ama", true)] \[InlineData("other", false)] public void IsPalindromeTest(string word, bool expected) { // Arrange var strOperations = new StringOperations(); // Act var result = strOperations.IsPalindrome(word); // assert if (expected) { Assert.True(result); } else { Assert.False(result); } }

Mi test de GetStringLength

        [Fact]
        public void GetStringLength()
        {
            var strOperations = new StringOperations();

            var result = strOperations.GetStringLength("rice");

            Assert.Equal(4, result);
        }