Exemplo n.º 1
0
        public ProductType GetProductType_TestSet(string product)
        {
            var categorizer = new ProductCategorizer(intergalacticProducts, earthyProducts);

            return(categorizer.GetProductType(product));
        }
Exemplo n.º 2
0
        public bool IsProductValid_TestSet(string product)
        {
            var categorizer = new ProductCategorizer(intergalacticProducts, earthyProducts);

            return(categorizer.IsProductValid(product));
        }