#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> { … };
}
TEST(TracingHelperTest, TraceableState) { … }
TEST(TracingHelperTest, TraceableStateOperators) { … }
}
}