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

// Copyright 2015 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/form_data.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_file_usvstring.h"
#include "third_party/blink/renderer/core/fileapi/file.h"
#include "third_party/blink/renderer/core/html/forms/form_controller.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 {

FormData* Deserialize(ExecutionContext& context,
                      const Vector<String>& strings) {}

}  // namespace

TEST(FormDataTest, append) {}

TEST(FormDataTest, AppendFromElement) {}

TEST(FormDataTest, get) {}

TEST(FormDataTest, getAll) {}

TEST(FormDataTest, has) {}

TEST(FormDataTest, AppendToControlState) {}

TEST(FormDataTest, CreateFromControlState) {}

TEST(FormDataTest, FilenameWithLoneSurrogates) {}

}  // namespace blink