1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/*
File : WorksheetTest.h
Project : LabPlot
Description : Tests for Worksheets
--------------------------------------------------------------------
SPDX-FileCopyrightText: 2023 Martin Marmsoler <martin.marmsoler@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef WORKSHEETTEST_H
#define WORKSHEETTEST_H
#include "../../CommonTest.h"
class WorksheetTest : public CommonTest {
Q_OBJECT
private Q_SLOTS:
void cursorCurveColor();
void exportReplaceExtension();
void zValueAfterAddMoveRemove();
};
#endif // WORKSHEETTEST_H
|