mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add missfile ParseFile test; add notes
This commit is contained in:
@@ -1196,6 +1196,13 @@ namespace SabreTools.DatFiles.Test
|
||||
Assert.True(actual.SequenceEqual(AllTypes));
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Missfile_ParseFile_Throws()
|
||||
{
|
||||
var datFile = new Missfile(null);
|
||||
Assert.Throws<NotImplementedException>(() => datFile.ParseFile("path", 0, true));
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region OfflineList
|
||||
|
||||
@@ -15,6 +15,7 @@ namespace SabreTools.DatFiles.Formats
|
||||
/// <summary>
|
||||
/// Represents parsing and writing of a reference SabreDAT JSON
|
||||
/// </summary>
|
||||
/// TODO: Transform this into direct serialization and deserialization of the Metadata type
|
||||
public sealed class SabreJSON : DatFile
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
|
||||
@@ -12,6 +12,7 @@ namespace SabreTools.DatFiles.Formats
|
||||
/// <summary>
|
||||
/// Represents parsing and writing of a SabreDAT XML
|
||||
/// </summary>
|
||||
/// TODO: Transform this into direct serialization and deserialization of the Metadata type
|
||||
public sealed class SabreXML : DatFile
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
|
||||
Reference in New Issue
Block a user