chromium/net/third_party/quiche/src/quiche/http2/test_tools/http2_random_test.cc

#include "quiche/http2/test_tools/http2_random.h"

#include <algorithm>
#include <set>
#include <string>

#include "quiche/common/platform/api/quiche_test.h"

namespace http2 {
namespace test {
namespace {

TEST(Http2RandomTest, ProducesDifferentNumbers) {}

TEST(Http2RandomTest, StartsWithDifferentKeys) {}

TEST(Http2RandomTest, ReproducibleRandom) {}

TEST(Http2RandomTest, STLShuffle) {}

TEST(Http2RandomTest, RandFloat) {}

TEST(Http2RandomTest, RandStringWithAlphabet) {}

TEST(Http2RandomTest, SkewedLow) {}

// Checks that SkewedLow() generates full range.  This is required, since in
// some unit tests would infinitely loop.
TEST(Http2RandomTest, SkewedLowFullRange) {}

}  // namespace
}  // namespace test
}  // namespace http2