chromium/base/vlog_unittest.cc

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

#include "base/vlog.h"

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

namespace logging {

namespace {

TEST(VlogTest, NoVmodule) {}

TEST(VlogTest, MatchVlogPattern) {}

TEST(VlogTest, VmoduleBasic) {}

TEST(VlogTest, VmoduleDirs) {}

TEST(VlogTest, VmoduleDuplicateName) {}

TEST(VlogTest, VmoduleDuplicatePattern) {}

TEST(VlogTest, VmoduleOrderFirstMatchIsName) {}

TEST(VlogTest, VmoduleOrderFirstMatchIsPattern) {}

TEST(VlogTest, VmoduleOrderSample) {}

TEST(VlogTest, WithSwitches) {}
}  // namespace

}  // namespace logging