#include "quiche/http2/adapter/event_forwarder.h"
#include <string>
#include "absl/strings/string_view.h"
#include "quiche/http2/adapter/http2_protocol.h"
#include "quiche/http2/test_tools/mock_spdy_framer_visitor.h"
#include "quiche/common/platform/api/quiche_test.h"
#include "quiche/spdy/core/spdy_protocol.h"
namespace http2 {
namespace adapter {
namespace test {
namespace {
constexpr absl::string_view some_data = …;
constexpr spdy::SpdyStreamId stream_id = …;
constexpr spdy::SpdyErrorCode error_code = …;
constexpr size_t length = …;
TEST(EventForwarderTest, ForwardsEventsWithTruePredicate) { … }
TEST(EventForwarderTest, DoesNotForwardEventsWithFalsePredicate) { … }
}
}
}
}