feyris-tan 36969eede2
All checks were successful
🚀 Pack skyscraper8 / make-zip (push) Successful in 2m4s
Refactored Tests.
2025-11-17 22:13:31 +01:00

17 lines
318 B
C#

using Allure.Xunit.Attributes;
using skyscraper5.Mpeg2;
namespace skyscraper8.Tests.RootTests;
public class Mpeg2Tests
{
[Fact]
[AllureSuite("Root")]
[AllureFeature("MPEG2")]
void PsiSectionTest()
{
PsiSection section = new PsiSection();
section.Append(new byte[] { 3 });
}
}