17 lines
318 B
C#
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 });
|
|
}
|
|
}
|