コード例 #1
0
        public void AreFilesOutOfDate_LocalLessThan_Current()
        {
            PackageInstaller pkgInstaller    = new PackageInstaller();
            IInstallSettings currentSettings = pkgInstaller.ReadInstallSettings(Consts.settingsXml01);
            string           filePath        = this.WriteTextToTempFile(Consts.settingsXml_Version05);
            bool             result          = pkgInstaller.AreExistingFilesOutOfDate(currentSettings, filePath);

            Assert.IsTrue(result);
        }