chromium/third_party/blink/renderer/platform/wtf/bit_field_test.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 "third_party/blink/renderer/platform/wtf/bit_field.h"

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

namespace WTF {

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

TEST_F(BitFieldTest, BitFieldDefaultCtor) {}

TEST_F(BitFieldTest, BitFieldCtor) {}

TEST_F(BitFieldTest, SplitBitField) {}

TEST_F(BitFieldTest, BitFieldBits) {}

TEST_F(BitFieldTest, BitFieldSetValue) {}

TEST_F(BitFieldTest, ConcurrentBitFieldGettersReturnTheSame) {}

TEST_F(BitFieldTest, ConcurrentBitFieldSetValue) {}

}  // namespace WTF