diff --git a/SabreTools.DatFiles.Test/DatStatisticsTests.cs b/SabreTools.DatFiles.Test/DatStatisticsTests.cs new file mode 100644 index 00000000..0c8b8106 --- /dev/null +++ b/SabreTools.DatFiles.Test/DatStatisticsTests.cs @@ -0,0 +1,61 @@ +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 + } +} \ No newline at end of file