chromium/third_party/blink/renderer/platform/scheduler/common/tracing_helper_unittest.cc

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

#include "third_party/blink/renderer/platform/scheduler/common/tracing_helper.h"

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

namespace blink {
namespace scheduler {

namespace {

const char* g_last_state =;

void ExpectTraced(const char* state) {}

void ExpectNotTraced() {}

const char* SignOfInt(int value) {}

class TraceableStateForTest
    : public TraceableState<int, TracingCategory::kDefault> {};

}  // namespace

// TODO(kraynov): TraceableCounter tests.

TEST(TracingHelperTest, TraceableState) {}

TEST(TracingHelperTest, TraceableStateOperators) {}

}  // namespace scheduler
}  // namespace blink