FileDatabase Refactor and normalization

Test cleanup
This commit is contained in:
daniel-c-harvey
2025-09-04 17:27:28 -04:00
parent 6fefcbcfb5
commit 97ad4e3ac7
20 changed files with 373 additions and 393 deletions
+8 -5
View File
@@ -51,14 +51,17 @@ public static class TestData
}
/// <summary>
/// Test entry keys used across tests
/// Test keys used across tests - now using simple strings and separate vault types
/// </summary>
public static class TestKeys
{
public static readonly EntryKey TestImageEntry = new("test", MediaVaultType.Image);
public static readonly EntryKey ImageVaultKey = new("img", MediaVaultType.Image);
public static readonly EntryKey NonExistentVaultKey = new("i-do-not-exist", MediaVaultType.Image);
public static readonly EntryKey NonExistentEntryKey = new("i-do-not-exist", MediaVaultType.Image);
public const string TestImageEntry = "test";
public const string ImageVaultKey = "img";
public const string NonExistentVaultKey = "i-do-not-exist";
public const string NonExistentEntryKey = "i-do-not-exist";
// Vault type for image-related tests
public const MediaVaultType ImageVaultType = MediaVaultType.Image;
}
/// <summary>