public void CanCreatePreCombinations()
        {
            IOutfitEngineService oes = OutfitEngineProcessorTest.CreateOutfitEngineService();

            oes.CreateOutfits(154);
            oes.CreateOutfits(154);
        }
        public void CanAddOutfits()
        {
            IOutfitEngineService oes = OutfitEngineProcessorTest.CreateOutfitEngineService();

            List <int> lst = new List <int>();

            lst.Add(638377);
            oes.AddOutfits(154, lst);
        }
        public void CanCheckHasValidCombinations()
        {
            IOutfitEngineService oes = OutfitEngineProcessorTest.CreateOutfitEngineService();

            List <int> lstgarments = new List <int>();

            lstgarments.Add(2383557);
            List <int> lstflavors = new List <int>();

            lstflavors.Add(1);
            lstflavors.Add(7);
            oes.HasValidCombinations(lstgarments, lstflavors);
            Assert.IsFalse(oes.HasValidCombinations(lstgarments, lstflavors));
        }