Beispiel #1
0
 public void verify_plan()
 {
     Debug.WriteLine(thePlan.ToDescriptionText());
     thePlan.ShouldHaveTheSameElementsAs(
         updateSolutionDependency("FubuTestingSupport", "1.2.0.0", UpdateMode.Float)
         );
 }
 public void installs_the_new_package_but_does_not_update_the_existing()
 {
     Debug.WriteLine(thePlan.ToDescriptionText());
     thePlan.ShouldHaveTheSameElementsAs(
         solutionInstallation("Bottles", "1.1.0.0", UpdateMode.Fixed),
         projectInstallation("Test", "Bottles")
         );
 }
        public void installs_the_latest_versions()
        {
            Debug.WriteLine(thePlan.ToDescriptionText());

            thePlan.ShouldHaveTheSameElementsAs(

                solutionInstallation("FubuMVC.Katana", "1.0.0.1", UpdateMode.Float),
                projectInstallation("Test", "FubuMVC.Katana"),

                solutionInstallation("FubuMVC.Core", "1.1.0.2", UpdateMode.Float),
                projectInstallation("Test", "FubuMVC.Core"),

                solutionInstallation("FubuMVC.OwinHost", "1.3.0.0", UpdateMode.Float),
                projectInstallation("Test", "FubuMVC.OwinHost")
                );
        }
        public void verify_plan()
        {
            Debug.WriteLine(thePlan.ToDescriptionText());

            thePlan.ShouldHaveTheSameElementsAs(

                updateSolutionDependency("Serenity", "1.2.0.0", UpdateMode.Float),

                solutionInstallation("Something", "1.0.0.5", UpdateMode.Fixed),
                projectInstallation("Test1", "Something"),
                projectInstallation("Test2", "Something"),

                solutionInstallation("SomethingElse", "0.9.9.9", UpdateMode.Fixed),
                projectInstallation("Test1", "SomethingElse"),
                projectInstallation("Test2", "SomethingElse"),

                updateSolutionDependency("WebDriver", "1.2.0.0", UpdateMode.Fixed)

                );
        }