#include <string>
#include "base/functional/bind.h"
#include "base/test/metrics/histogram_tester.h"
#include "components/os_crypt/sync/key_storage_linux.h"
#include "components/os_crypt/sync/os_crypt.h"
#include "components/os_crypt/sync/os_crypt_mocker_linux.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
std::unique_ptr<KeyStorageLinux> GetNullKeyStorage() { … }
class OSCryptLinuxTest : public testing::Test { … };
TEST_F(OSCryptLinuxTest, VerifyV0) { … }
TEST_F(OSCryptLinuxTest, VerifyV10) { … }
TEST_F(OSCryptLinuxTest, VerifyV11) { … }
TEST_F(OSCryptLinuxTest, IsEncryptionAvailable) { … }
TEST_F(OSCryptLinuxTest, SetRawEncryptionKey) { … }
TEST_F(OSCryptLinuxTest, DecryptWhenEncryptionKeyIsEmpty) { … }
}