19 lines
531 B
C#
19 lines
531 B
C#
using skyscraper8.GS;
|
|
using skyscraper8.GS.GSE_RollingSyncByte;
|
|
using skyscraper8.GSE;
|
|
|
|
namespace skyscraper8.Tests.NUnit.Tests.ResourceTests;
|
|
|
|
[TestFixture]
|
|
public class GsResourceTests
|
|
{
|
|
[Test]
|
|
public void TestShortPdu()
|
|
{
|
|
byte[] datasource = Properties.Resources.Frame00000357_TSGS1_MIS000_SYNC184;
|
|
GsContextDto dto = new GsContextDto();
|
|
GseWithRollingSyncByteReader reader = new GseWithRollingSyncByteReader(dto);
|
|
reader.PushFrame(new BBHeader(new byte[10], 0), datasource);
|
|
}
|
|
}
|