tests: add first test for auth

This commit is contained in:
talksik
2026-01-27 12:43:44 -08:00
parent 707e4455ac
commit 314c9037f2
4 changed files with 88 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef TESTAUTHMANAGER_H
#define TESTAUTHMANAGER_H
#include "authmanager.h"
#include <QObject>
#include <QTest>
class TestAuthManager : public QObject
{
Q_OBJECT
public:
explicit TestAuthManager(QObject *parent = nullptr);
private slots:
void add();
void testSignIn();
signals:
private:
AuthManager *m_authManager;
};
#endif // TESTAUTHMANAGER_H