Split ApplyRemovals for testability

This commit is contained in:
Matt Nadareski
2025-01-10 21:15:50 -05:00
parent a16a5db197
commit b37787be64
3 changed files with 51 additions and 29 deletions

View File

@@ -2,6 +2,35 @@ namespace SabreTools.DatFiles.Test
{
public partial class DatFileTests
{
#region RemoveHeaderFields
// TODO: Write RemoveHeaderFields tests
// - Null header
// - Empty list
// - Full list
#endregion
#region RemoveItemFields
// TODO: Write RemoveItemFields tests
// - Null item dict
// - Both lists empty
// - Machine only
// - Item only
// - Nested
#endregion
#region RemoveItemFieldsDB
// TODO: Write RemoveItemFieldsDB tests
// - Null item dict
// - Both lists empty
// - Machine only
// - Item only
// - Nested
#endregion
}
}