public ProductType GetProductType_TestSet(string product)
        {
            var categorizer = new ProductCategorizer(intergalacticProducts, earthyProducts);

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

            return(categorizer.IsProductValid(product));
        }