Ejemplo n.º 1
0
        public void SetUp()
        {
            files = new AssetFile[] {
                new AssetFile("something.js")
                {
                    FullPath = "something.js"
                },
                new AssetFile("something2.js")
                {
                    FullPath = "something2.js"
                },
                new AssetFile("something3.js")
                {
                    FullPath = "something3.js"
                },
                new AssetFile("something4.js")
                {
                    FullPath = "something4.js"
                },
            };

            thePlan        = new ContentPlan("a plan", files);
            theCombination = thePlan.Combine(new[] { thePlan.GetAllSources().ElementAt(0), thePlan.GetAllSources().ElementAt(1) });
        }
Ejemplo n.º 2
0
        public void SetUp()
        {
            files = new AssetFile[]{
                new AssetFile("something.js"){FullPath = "something.js"},
                new AssetFile("something2.js"){FullPath = "something2.js"},
                new AssetFile("something3.js"){FullPath = "something3.js"},
                new AssetFile("something4.js"){FullPath = "something4.js"},
            };

            thePlan = new ContentPlan("a plan", files);
            theCombination = thePlan.Combine(new[] { thePlan.GetAllSources().ElementAt(0), thePlan.GetAllSources().ElementAt(1) });
        }