feyris-tan 37a070b665
All checks were successful
🚀 Pack skyscraper8 / make-zip (push) Successful in 6m10s
Moved from MSTest to NUnit
2026-06-15 22:53:52 +02:00

15 lines
307 B
C#

using skyscraper5.Mpeg2;
namespace skyscraper8.Tests.NUnit.Tests.CoverageTests;
[TestFixture]
public class Mpeg2CoverageTests : SkyscrapersTestingFramework
{
[Test]
public void PsiSectionTest()
{
PsiSection section = new PsiSection();
section.Append(new byte[] { 3 });
}
}