Beispiel #1
0
        public override void OnInstallRegValue(ref RegistryInstallInfo registryInfo)
        {
            // check to see that the file is in the expected list
            InstalledRegInfo info = new InstalledRegInfo(registryInfo.KeyName, registryInfo.ValueName, registryInfo.ValueKind);

            bool found = false;

            foreach (InstalledRegInfo searchFor in m_testData.InstalledRegKeys)
            {
                // TODO: for now ignore date and flags, but these need to be validated in a future test
                if (info.CompareTo(searchFor, true, true) == 0)
                {
                    found = true;
                    // mark it as installed - we'll look at these later in the test to make sure everything was installed
                    searchFor.Installed = true;
                    break;
                }
            }

            if (!found)
            {
                Assert.Fail(string.Format("Value '{0}' or one of its properties was unexpected", registryInfo.ValueName));
            }

            // don't call the base - we're just testing
        }
Beispiel #2
0
 public override void OnInstallRegValue(ref RegistryInstallInfo registryInfo)
 {
 }