Add skeleton test file for Splitting

This commit is contained in:
Matt Nadareski
2025-01-13 00:15:36 -05:00
parent 16fa2cbe02
commit 47b618be16

View File

@@ -0,0 +1,55 @@
using Xunit;
namespace SabreTools.DatFiles.Test
{
public partial class DatFileTests
{
#region AddRomsFromBios
// TODO: Implement AddRomsFromBios tests
#endregion
#region AddRomsFromChildren
// TODO: Implement AddRomsFromChildren tests
#endregion
#region AddRomsFromDevices
// TODO: Implement AddRomsFromDevices tests
#endregion
#region AddRomsFromParent
// TODO: Implement AddRomsFromParent tests
#endregion
#region RemoveBiosAndDeviceSets
// TODO: Implement RemoveBiosAndDeviceSets tests
#endregion
#region RemoveBiosRomsFromChild
// TODO: Implement RemoveBiosRomsFromChild tests
#endregion
#region RemoveRomsFromChild
// TODO: Implement RemoveRomsFromChild tests
#endregion
#region RemoveTagsFromChild
// TODO: Implement RemoveTagsFromChild tests
#endregion
}
}