chromium/third_party/blink/renderer/core/html/forms/option_list_test.cc

// Copyright 2016 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/core/html/forms/option_list.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/html/forms/html_option_element.h"
#include "third_party/blink/renderer/core/html/forms/html_select_element.h"
#include "third_party/blink/renderer/core/html/html_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 {

namespace {

AtomicString Id(const HTMLOptionElement* option) {}

}  // namespace

class OptionListTest : public testing::Test {};

TEST_F(OptionListTest, Empty) {}

TEST_F(OptionListTest, OptionOnly) {}

TEST_F(OptionListTest, Optgroup) {}

}  // naemespace blink