public void ShouldBeAbleToGetCompleteInstallationDirectory()
        {
            var installDir      = _testAppDir;
            var filewithparents = @"\x64\locales\ca.pak";
            var expected        = installDir + filewithparents;
            var result          = ProductInstallationUtilities.FinalizeInstallLocation(origin, installDir);

            Assert.AreEqual(expected, result);
        }
예제 #2
0
        public void PushOtherFilesToLibrary(string origin, string destination)
        {
            var destFilename = ProductInstallationUtilities.FinalizeInstallLocation(origin, destination);

            FileLibrary.Add(origin, destFilename);
        }