Last active
December 11, 2025 16:33
-
-
Save pazteddy/643890914eb2886d58644fa5acb19bf1 to your computer and use it in GitHub Desktop.
Pruebas para endpoints de Productos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Fact(Skip = "Pendiente de implementación")] | |
| public void GetAllProducts_ReturnsOkWithProducts() | |
| {} | |
| [Fact(Skip = "Pendiente de implementación")] | |
| public void GetProductById_ReturnsOKWhithProduct() | |
| {} | |
| [Fact(Skip = "Pendiente de implementación")] | |
| public void GetProductById_ReturnsNotFound_WhenProductDoesNotExist() | |
| {} | |
| [Fact(Skip = "Pendiente de implementación")] | |
| public void CreateProduct_ReturnsCreatedWithPayload() | |
| {} | |
| [Fact(Skip = "Pendiente de implementación")] | |
| public void CreateProduct_ReturnsBadRequest_WhenPriceIsNegative() | |
| {} | |
| [Fact(Skip = "Pendiente de implementación")] | |
| public void UpdateProduct_ReturnsOk_WhenUpdateSucceeds() | |
| {} | |
| [Fact(Skip = "Pendiente de implementación")] | |
| public void UpdateProduct_ReturnsNotFound_WhenServiceReturnsFalse() | |
| {} | |
| [Fact(Skip = "Pendiente de implementación")] | |
| public void DeleteProduct_ReturnsNoContent_WhenDeletionSucceeds() | |
| {} | |
| [Fact(Skip = "Pendiente de implementación")] | |
| public void DeleteProduct_ReturnsNotFound_WhenDeletionFails() | |
| {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment