chromium/third_party/blink/renderer/modules/credentialmanagement/password_credential_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/modules/credentialmanagement/password_credential.h"

#include <memory>
#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/form_controller.h"
#include "third_party/blink/renderer/core/html/forms/form_data.h"
#include "third_party/blink/renderer/core/html/forms/html_form_element.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink {

class PasswordCredentialTest : public PageTestBase {};

TEST_F(PasswordCredentialTest, CreateFromMultipartForm) {}

TEST_F(PasswordCredentialTest, CreateFromURLEncodedForm) {}

TEST_F(PasswordCredentialTest, CreateFromFormNoPassword) {}

TEST_F(PasswordCredentialTest, CreateFromFormNoId) {}

TEST_F(PasswordCredentialTest, CreateFromFormElementWithoutName) {}

}  // namespace blink