Skip to content

Commit

Permalink
Add DeserializeTest
Browse files Browse the repository at this point in the history
  • Loading branch information
cooolbros committed Nov 12, 2024
1 parent e0d6dd2 commit 7ab3da9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/HUDAnimationsTests/HUDAnimationsSerializerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ namespace HUDAnimations.Tests;
[TestClass()]
public class HUDAnimationsSerializerTests
{
[TestMethod()]
public void DeserializeTest()
{
foreach (string path in Directory.EnumerateFiles("HUDAnimationsSerializerTests/scripts"))
{
HUDAnimationsSerializer.Deserialize(File.ReadAllText(path));
}
}

[TestMethod()]
public void SerializeTest()
{
Expand Down

0 comments on commit 7ab3da9

Please sign in to comment.