Files
SabreTools/SabreTools.DatFiles.Test/DatStatisticsTests.cs
2025-02-10 12:39:57 -05:00

61 lines
1.0 KiB
C#

using System.Collections.Generic;
using System.IO;
using SabreTools.DatFiles.Formats;
using SabreTools.DatItems;
using SabreTools.DatItems.Formats;
using SabreTools.Hashing;
using Xunit;
namespace SabreTools.DatFiles.Test
{
public class DatStatisticsTests
{
#region Constructor
// TODO: Write Constructor tests
#endregion
#region AddItemStatistics
// TODO: Write AddItemStatistics tests
#endregion
#region AddStatistics
// TODO: Write AddStatistics tests
#endregion
#region GetHashCount
// TODO: Write GetHashCount tests
#endregion
#region GetItemCount
// TODO: Write GetItemCount tests
#endregion
#region GetStatusCount
// TODO: Write GetStatusCount tests
#endregion
#region RemoveItemStatistics
// TODO: Write RemoveItemStatistics tests
#endregion
#region ResetStatistics
// TODO: Write ResetStatistics tests
#endregion
}
}