#include "third_party/blink/renderer/core/html/forms/external_date_time_chooser.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
#include "third_party/blink/renderer/core/html/forms/date_time_chooser_client.h"
#include "third_party/blink/renderer/core/html/forms/html_input_element.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.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/runtime_enabled_features_test_helpers.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
namespace blink {
class ExternalDateTimeChooserTest : public testing::Test { … };
class TestDateTimeChooserClient final
: public GarbageCollected<TestDateTimeChooserClient>,
public DateTimeChooserClient { … };
TEST_F(ExternalDateTimeChooserTest, EndChooserShouldNotCrash) { … }
TEST_F(ExternalDateTimeChooserTest,
OpenDateTimeChooserShouldNotCrashWhenLabelAndValueIsTheSame) { … }
}