예제 #1
0
        protected override void GivenThat()
        {
            base.GivenThat();

            XmlNode n = ControlFileXmlDocument.SelectSingleNode("podcasts/global/feed/maximumDaysOld");

            n.InnerText = FeedMaximumDaysOldText;
        }
예제 #2
0
        protected override void GivenThat()
        {
            base.GivenThat();

            XmlNode n = ControlFileXmlDocument.SelectSingleNode("podcasts/global/sourceRoot");

            n.ParentNode.RemoveChild(n);
        }
        protected override void GivenThat()
        {
            base.GivenThat();

            XmlNode n = ControlFileXmlDocument.SelectSingleNode("podcasts/global/feed/downloadStrategy");

            n.InnerText = StrategyText;
        }
예제 #4
0
        protected override void GivenThat()
        {
            base.GivenThat();

            XmlNode n = ControlFileXmlDocument.SelectSingleNode("podcasts/global/playlistPathSeparator");

            n.ParentNode.RemoveChild(n);
        }
예제 #5
0
        protected override void GivenThat()
        {
            base.GivenThat();

            XmlNode n = ControlFileXmlDocument.SelectSingleNode("podcasts/global/feed/format");

            n.InnerText = FeedFormatText;
        }
예제 #6
0
        protected override void GivenThat()
        {
            base.GivenThat();

            XmlNode n = ControlFileXmlDocument.SelectSingleNode("podcasts/global/feed/namingStyle");

            n.InnerText = NamingStyleTextText;
        }
        protected override void GivenThat()
        {
            base.GivenThat();

            XmlNode n = ControlFileXmlDocument.SelectSingleNode("podcasts/global/freeSpaceToLeaveOnDestinationMB");

            n.InnerText = ControlFileFreeSpaceText;

            ControlFile = new ReadOnlyControlFile(ControlFileXmlDocument);
        }