Exemplo n.º 1
0
        public void ProductWithCategory_WithProductAndCategoryName_ShouldInclude2Names()
        {
            // Arrange
            var service      = new NamesFormatService();
            var productName  = "prod1";
            var categoryName = "categ1";

            // Act
            var result = service.ProductWithCategory(productName, categoryName);

            // Assert
            result.Should().Be("prod1 (categ1)");
        }
Exemplo n.º 2
0
        public void ProductWithCategory_WithoutCategoryName_ShouldBeProductName()
        {
            // Arrange
            var service      = new NamesFormatService();
            var productName  = "prod1";
            var categoryName = string.Empty;

            // Act
            var result = service.ProductWithCategory(productName, categoryName);

            // Assert
            result.Should().Be("prod1");
        }
Exemplo n.º 3
0
        public void ProductWithCategory_OrderNames_ShouldBeProductNameFirst()
        {
            // Arrange
            var service      = new NamesFormatService();
            var productName  = "prod1";
            var categoryName = "categ1";

            // Act
            var result = service.ProductWithCategory(productName, categoryName);

            // Assert
            Assert.That(result, Is.Not.EqualTo("categ1 (prod1)")); // NUnit
            result.Should().NotBe("categ1 (prod1)");               // FluentAssertions
        }
Exemplo n.º 4
0
        public void ProductWithCategory_IgnoreCase_ShouldInclude2Names()
        {
            // Arrange
            var service      = new NamesFormatService();
            var productName  = "prod1";
            var categoryName = "categ1";

            // Act
            var result = service.ProductWithCategory(productName, categoryName);

            // Assert
            Assert.That(result, Is.EqualTo("PROD1 (Categ1)").IgnoreCase); // NUnit
            result.Should().BeEquivalentTo("PROD1 (Categ1)");             // FluentAssertions
        }