// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/autofill/content/renderer/prefilled_values_detector.h" #include "base/strings/string_util.h" #include "testing/gtest/include/gtest/gtest.h" namespace autofill { // Ensure that all entries in KnownUsernamePlaceholders() are lowercase because // the lowercase string of the website is tested against this set. TEST(PossiblePrefilledUsernameValue, AllLowerCase) { … } TEST(PossiblePrefilledUsernameValue, Whitespace) { … } TEST(PossiblePrefilledUsernameValue, EmailAddress) { … } } // namespace autofill