#include "third_party/blink/renderer/platform/media/interval_map.h"
#include <stdint.h>
#include <string>
#include "base/logging.h"
#include "base/strings/stringprintf.h"
#include "media/base/test_random.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace blink {
const int kTestSize = …;
class SimpleIntervalMap { … };
class IntervalMapTest : public testing::Test { … };
TEST_F(IntervalMapTest, SimpleTest) { … }
TEST_F(IntervalMapTest, SimpleIncrementTest) { … }
TEST_F(IntervalMapTest, IncrementJoinIntervalsTest) { … }
TEST_F(IntervalMapTest, SetJoinIntervalsTest) { … }
TEST_F(IntervalMapTest, FindTest) { … }
TEST_F(IntervalMapTest, MinMaxInt) { … }
TEST_F(IntervalMapTest, RandomIncrementTest) { … }
TEST_F(IntervalMapTest, RandomSetTest) { … }
}