Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
fippo committed Aug 6, 2024
1 parent ca51a2d commit 861455e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions worker/test/src/RTC/TestSeqManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1416,4 +1416,18 @@ SCENARIO("SeqManager", "[rtc][SeqMananger]")
validate(seqManager, inputs);
}

SECTION("receive packets prior to first mapped packet")
{
// clang-format off
std::vector<TestSeqManagerInput<uint16_t>> inputs =
{
{ 4, 4, false, false },
{ 3, 3, false, false },
{ 65535, 65535, false, false },
};
// clang-format on

SeqManager<uint16_t> seqManager;
validate(seqManager, inputs);
}
}

0 comments on commit 861455e

Please sign in to comment.