| Index: net/quic/core/quic_multipath_sent_packet_manager_test.cc
|
| diff --git a/net/quic/core/quic_multipath_sent_packet_manager_test.cc b/net/quic/core/quic_multipath_sent_packet_manager_test.cc
|
| index f7bd71874849454744a65a86fa5aa5ec6073fb9c..4098c30adecdb11e782a24c29f8362011e9ea333 100644
|
| --- a/net/quic/core/quic_multipath_sent_packet_manager_test.cc
|
| +++ b/net/quic/core/quic_multipath_sent_packet_manager_test.cc
|
| @@ -350,6 +350,13 @@ TEST_F(QuicMultipathSentPacketManagerTest, GetConsecutiveTlpCount) {
|
| EXPECT_EQ(3u, multipath_manager_.GetConsecutiveTlpCount());
|
| }
|
|
|
| +TEST_F(QuicMultipathSentPacketManagerTest, OnApplicationLimited) {
|
| + EXPECT_CALL(*manager_0_, OnApplicationLimited()).Times(1);
|
| + EXPECT_CALL(*manager_1_, OnApplicationLimited()).Times(1);
|
| + EXPECT_CALL(*manager_2_, OnApplicationLimited()).Times(0);
|
| + multipath_manager_.OnApplicationLimited();
|
| +}
|
| +
|
| } // namespace
|
| } // namespace test
|
| } // namespace net
|
|
|