Skip to content

Commit 7ed8abe

Browse files
committed
+
1 parent 6b40894 commit 7ed8abe

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

worker/test/src/RTC/TestSeqManager.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,4 +1400,19 @@ SCENARIO("SeqManager", "[rtc][SeqMananger]")
14001400
SeqManager<uint16_t> seqManager(/*initialOutput*/ 1000);
14011401
validate(seqManager, inputs);
14021402
}
1403+
1404+
SECTION("receive packets prior to first mapped packet")
1405+
{
1406+
// clang-format off
1407+
std::vector<TestSeqManagerInput<uint16_t>> inputs =
1408+
{
1409+
{ 4, 4, false, false },
1410+
{ 3, 3, false, false },
1411+
{ 65535, 65535, false, false },
1412+
};
1413+
// clang-format on
1414+
1415+
SeqManager<uint16_t> seqManager;
1416+
validate(seqManager, inputs);
1417+
}
14031418
}

0 commit comments

Comments
 (0)