mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
61 lines
1.0 KiB
C#
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
|
||
|
|
}
|
||
|
|
}
|