#include "third_party/blink/renderer/core/dom/attr.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/testing/null_execution_context.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
namespace blink {
class AttrTest : public testing::Test { … };
void AttrTest::SetUp() { … }
Attr* AttrTest::CreateAttribute() { … }
TEST_F(AttrTest, InitialValueState) { … }
TEST_F(AttrTest, SetValue) { … }
TEST_F(AttrTest, SetNodeValue) { … }
TEST_F(AttrTest, SetTextContent) { … }
}