File indexing completed on 2024-12-22 04:12:51
0001 /* 0002 * SPDX-FileCopyrightText: 2013 Dmitry Kazakov <dimula73@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "kis_categorized_list_model_test.h" 0008 0009 #include <simpletest.h> 0010 #include "testing_categories_mapper.h" 0011 #include "kis_categorized_list_model.h" 0012 0013 #include "modeltest.h" 0014 0015 void KisCategorizedListModelTest::test() 0016 { 0017 KisCategorizedListModel<QString, QStringConverter> model; 0018 ModelTest modelTest(&model); 0019 } 0020 0021 SIMPLE_TEST_MAIN(KisCategorizedListModelTest)