ukui-notification/test/main.cpp

15 lines
330 B
C++
Raw Normal View History

//
// Created by zpf on 2023/2/7.
//
#include <QCoreApplication>
#include <QDebug>
#include "notification-client-test.h"
#include "notification-settings-test.h"
int main(int argc, char *argv[])
{
QCoreApplication app(argc, argv);
// NotificationClientTest ct;
NotificationSettingsTest setting;
return app.exec();
}