File indexing completed on 2024-11-24 03:41:03
0001 /* 0002 This file is part of the KDE libraries 0003 SPDX-FileCopyrightText: 2021 Slava Aseev <nullptrnine@basealt.ru> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef FDOSECRETSTEST_H 0009 #define FDOSECRETSTEST_H 0010 0011 #include "../kwalletd.h" 0012 #include "testhelpers.hpp" 0013 0014 class FdoSecretsTest : public QObject 0015 { 0016 Q_OBJECT 0017 0018 private Q_SLOTS: 0019 void initTestCase(); 0020 void cleanup(); 0021 0022 void serviceStaticFunctions(); 0023 void collectionStaticFunctions(); 0024 0025 void precreatedWallets(); 0026 void aliases(); 0027 void createLockUnlockCollection(); 0028 void items(); 0029 void session(); 0030 void attributes(); 0031 void walletNameEncodeDecode(); 0032 }; 0033 0034 #endif