public void Including_a_folder_that_does_not_exist_should_throw()
        {
            var project = new VisualStudioProjectFacade(SampleProject);

            Should.Throw <InvalidOperationException>(() =>
                                                     project.IncludeDirectory("Content/IDontExist")
                                                     );
        }
        public void Can_include_a_folder_into_existing_project()
        {
            var project = new VisualStudioProjectFacade(SampleProject);

            project.Includes("Content/Images").ShouldBe(false);
            project.IncludeDirectory("Content/Images");
            project.Includes("Content/Images").ShouldBe(true);
        }