setup electron app with boilerplate

This commit is contained in:
talksik
2026-02-19 19:41:26 -08:00
parent fc6a5e43db
commit 1f249c47a6
5174 changed files with 8743 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