The windows registry store can now enumerate non-existing categories, too
git-svn-id: file:///srv/devel/repo-conversion/nusu@323 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
f74f1d0c6c
commit
52401a43ac
|
@ -319,7 +319,7 @@ namespace Nuclex.Support.Settings {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Verifies that it's possible to assign an empty value to an option
|
/// Verifies that options are removed from the configuration file correctly
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Test]
|
[Test]
|
||||||
public void RemovingOptionShiftsFollowingOptionsUp() {
|
public void RemovingOptionShiftsFollowingOptionsUp() {
|
||||||
|
@ -355,7 +355,7 @@ namespace Nuclex.Support.Settings {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Verifies that it's not an error to remove a non-existing option
|
/// Verifies that the configuration file store can identify various types of values
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[
|
[
|
||||||
Test,
|
Test,
|
||||||
|
|
|
@ -180,6 +180,16 @@ namespace Nuclex.Support.Settings {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Verifies that it's possible to enumerate a category that doesn't exist
|
||||||
|
/// </summary>
|
||||||
|
[Test]
|
||||||
|
public void NonExistingCategoryCanBeEnumerated() {
|
||||||
|
using(var context = new TestContext()) {
|
||||||
|
Assert.That(context.Store.EnumerateOptions("doesn't exist"), Is.Empty);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>Verifies that byte arrays can be stored in the registry</summary>
|
/// <summary>Verifies that byte arrays can be stored in the registry</summary>
|
||||||
[Test]
|
[Test]
|
||||||
public void ByteArraysCanBeStored() {
|
public void ByteArraysCanBeStored() {
|
||||||
|
|
|
@ -82,6 +82,9 @@ namespace Nuclex.Support.Settings {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
using(RegistryKey categoryKey = this.rootKey.OpenSubKey(category, this.writable)) {
|
using(RegistryKey categoryKey = this.rootKey.OpenSubKey(category, this.writable)) {
|
||||||
|
if(categoryKey == null) {
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
string[] valueNames = categoryKey.GetValueNames();
|
string[] valueNames = categoryKey.GetValueNames();
|
||||||
for(int index = 0; index < valueNames.Length; ++index) {
|
for(int index = 0; index < valueNames.Length; ++index) {
|
||||||
yield return new OptionInfo() {
|
yield return new OptionInfo() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user