Ejemplo n.º 1
0
        public void GetFirstValueNameTest_Returns_Name()
        {
            string actual = RegistryWrapper.GetFirstValueName(RegHive.LocalMachine, Genev64KeyPath);

            Assert.AreEqual("ID", actual);
        }
Ejemplo n.º 2
0
        public void GetFirstValueNameTest_Returns_Null()
        {
            string actual = RegistryWrapper.GetFirstValueName(RegHive.ClassesRoot, notExistingKeyPath);

            Assert.AreEqual(null, actual);
        }