feyris-tan c0f644df1a
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 7s
Ditched xUnit and put in MSTest for automated testing instead.
2025-11-19 17:46:17 +01:00

16 lines
269 B
C#

using skyscraper5.Mpeg2;
namespace skyscraper8.Tests.RootTests;
[TestClass]
public class Mpeg2Tests : Feyllure
{
[TestMethod]
public void PsiSectionTest()
{
PsiSection section = new PsiSection();
section.Append(new byte[] { 3 });
}
}