mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-21 22:35:06 +00:00
Add set type RomVault game extension field
This commit is contained in:
@@ -255,6 +255,7 @@ namespace SabreTools.Serialization.CrossModel.Test
|
||||
gameBase.Id = "id";
|
||||
gameBase.CloneOfId = "cloneofid";
|
||||
gameBase.Runnable = Data.Models.Metadata.Runnable.Yes;
|
||||
gameBase.SetType = "dir";
|
||||
gameBase.Comment = ["comment"];
|
||||
gameBase.Description = "description";
|
||||
gameBase.Year = "year";
|
||||
@@ -385,6 +386,7 @@ namespace SabreTools.Serialization.CrossModel.Test
|
||||
Assert.Equal("id", gb.Id);
|
||||
Assert.Equal("cloneofid", gb.CloneOfId);
|
||||
Assert.Equal(Data.Models.Metadata.Runnable.Yes, gb.Runnable);
|
||||
Assert.Equal("dir", gb.SetType);
|
||||
|
||||
Assert.NotNull(gb.Comment);
|
||||
string comment = Assert.Single(gb.Comment);
|
||||
|
||||
Reference in New Issue
Block a user