chromium/media/learning/common/value_unittest.cc

// Copyright 2018 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/learning/common/value.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace media {
namespace learning {

class LearnerValueTest : public testing::Test {};

TEST_F(LearnerValueTest, EqualStringsCompareAsEqual) {}

TEST_F(LearnerValueTest, UnequalStringsDoNotCompareAsEqual) {}

TEST_F(LearnerValueTest, ConstCharAndStdStringsCompareAsEqual) {}

TEST_F(LearnerValueTest, IntsCompareCorrectly) {}

TEST_F(LearnerValueTest, VariousTypesWork) {}

}  // namespace learning
}  // namespace media