chromium/media/base/tuneable_unittest.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/base/tuneable.h"

#include "base/strings/string_number_conversions.h"
#include "base/test/scoped_feature_list.h"
#include "media/base/media_switches.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace media {

class TuneableTest : public ::testing::Test {};

TEST_F(TuneableTest, IntTuneableCached) {}

TEST_F(TuneableTest, IntTuneableFromDefaultWithClamps) {}

TEST_F(TuneableTest, IntTuneableFromParams) {}

TEST_F(TuneableTest, OtherSpecializationsCompile) {}

TEST_F(TuneableTest, TimeDeltaIsSpecifiedInMilliseconds) {}

}  // namespace media