• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2024 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "crypto/mock_apple_keychain.h"
6 
7 #include <string>
8 
9 #include "testing/gtest/include/gtest/gtest.h"
10 
TEST(MockAppleKeychain,Basic)11 TEST(MockAppleKeychain, Basic) {
12   crypto::MockAppleKeychain keychain;
13   const auto password = keychain.GetEncryptionPassword();
14   ASSERT_FALSE(password.empty());
15 }
16