File indexing completed on 2024-05-12 05:52:03

0001 /*
0002     SPDX-FileCopyrightText: 2019 Christoph Cullmann <cullmann@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 class KateSessionTest : public QObject
0012 {
0013     Q_OBJECT
0014 
0015 private Q_SLOTS:
0016     void init();
0017     void cleanup();
0018 
0019     void create();
0020     void createAnonymous();
0021     void createAnonymousFrom();
0022     void createFrom();
0023     void setFile();
0024     void setName();
0025     void timestamp();
0026 
0027 private:
0028     class QTemporaryFile *m_tmpfile;
0029 };