File indexing completed on 2024-05-19 03:50:37

0001 /*
0002     File                 : AbstractAspectTest.h
0003     Project              : LabPlot
0004     Description          : Tests for AbstractAspect
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2023 Martin Marmsoler <martin.marmsoler@gmail.com>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #ifndef ABSTRACTASPECTTEST_H
0012 #define ABSTRACTASPECTTEST_H
0013 
0014 #include "../../CommonTest.h"
0015 
0016 class AbstractAspectTest : public CommonTest {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     void name();
0021     void copyPaste();
0022     void saveLoad();
0023 
0024     void moveUp();
0025     void moveDown();
0026 };
0027 
0028 #endif // ABSTRACTASPECTTEST_H