Warning, file /network/ruqola/src/widgets/common/tests/authenticationoauthwidget_gui.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "authenticationoauthtestwidget.h"
0008 
0009 #include <QApplication>
0010 #include <QCommandLineParser>
0011 #include <QStandardPaths>
0012 int main(int argc, char **argv)
0013 {
0014     QApplication app(argc, argv);
0015     QStandardPaths::setTestModeEnabled(true);
0016     QCommandLineParser parser;
0017     parser.addVersionOption();
0018     parser.addHelpOption();
0019 
0020     parser.process(app);
0021     auto d = new AuthenticationOauthTestWidget(nullptr);
0022     d->resize(800, 600);
0023     d->show();
0024 
0025     return app.exec();
0026 }