File indexing completed on 2024-05-26 04:30:25

0001 /*
0002  *  SPDX-FileCopyrightText: 2013 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef __FILL_PROCESSING_VISITOR_TEST_H
0008 #define __FILL_PROCESSING_VISITOR_TEST_H
0009 
0010 #include <simpletest.h>
0011 
0012 class FillProcessingVisitorTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void testFillColorNoSelection();
0017     void testFillPatternNoSelection();
0018     void testFillColorHaveSelection();
0019     void testFillPatternHaveSelection();
0020 
0021     void testFillColorNoSelectionSelectionOnly();
0022     void testFillPatternNoSelectionSelectionOnly();
0023     void testFillColorHaveSelectionSelectionOnly();
0024     void testFillPatternHaveSelectionSelectionOnly();
0025 };
0026 
0027 #endif /* __FILL_PROCESSING_VISITOR_TEST_H */