File indexing completed on 2024-12-22 04:10:28
0001 /* 0002 * SPDX-FileCopyrightText: 2018 Iván Santa María <ghevan@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef KISMASKGENERATORBENCHMARK_H 0008 #define KISMASKGENERATORBENCHMARK_H 0009 0010 #include <simpletest.h> 0011 0012 class KisMaskGeneratorTest : public QObject 0013 { 0014 Q_OBJECT 0015 private Q_SLOTS: 0016 void testDefaultScalarMask(); 0017 void testDefaultVectorMask(); 0018 0019 void testCircularGaussScalarMask(); 0020 void testCircularGaussVectorMask(); 0021 0022 void testCircularSoftScalarMask(); 0023 void testCircularSoftVectorMask(); 0024 0025 void testRectangularScalarMask(); 0026 void testRectangularVectorMask(); 0027 0028 void testRectangularGaussScalarMask(); 0029 void testRectangularGaussVectorMask(); 0030 0031 void testRectangularSoftScalarMask(); 0032 void testRectangularSoftVectorMask(); 0033 0034 }; 0035 0036 #endif // KISMASKGENERATORBENCHMARK_H