mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Add -i/--include option to "generate" CLI command. (#7112)
This commit is contained in:
parent
b3896f2600
commit
a0a063b57f
9 changed files with 359 additions and 213 deletions
|
@ -18,17 +18,31 @@
|
|||
#ifndef KEEPASSXC_TESTPASSWORDGENERATOR_H
|
||||
#define KEEPASSXC_TESTPASSWORDGENERATOR_H
|
||||
|
||||
#include "core/PasswordGenerator.h"
|
||||
#include <QObject>
|
||||
|
||||
class TestPasswordGenerator : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private:
|
||||
PasswordGenerator m_generator;
|
||||
|
||||
private slots:
|
||||
void initTestCase();
|
||||
void testAdditionalChars();
|
||||
void init();
|
||||
|
||||
void testCustomCharacterSet_data();
|
||||
void testCustomCharacterSet();
|
||||
void testCharClasses_data();
|
||||
void testCharClasses();
|
||||
void testLookalikeExclusion_data();
|
||||
void testLookalikeExclusion();
|
||||
void testMinLength_data();
|
||||
void testMinLength();
|
||||
void testValidity_data();
|
||||
void testValidity();
|
||||
void testReset();
|
||||
};
|
||||
|
||||
#endif // KEEPASSXC_TESTPASSWORDGENERATOR_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue