Warning, /sdk/cutehmi/extensions/CuteHMI.2/tests/tests.qbs is written in an unsupported language. File is not indexed.

0001 import qbs
0002 
0003 import "Test.qbs" as Test
0004 
0005 Project {
0006         Test {
0007                 testName: "test_Message"
0008 
0009                 files: [
0010                         "test_Message.cpp",
0011                 ]
0012         }
0013 
0014         Test {
0015                 testName: "test_Messenger"
0016 
0017                 files: [
0018                         "test_Messenger.cpp",
0019                 ]
0020         }
0021 
0022         Test {
0023                 testName: "test_Init"
0024 
0025                 files: [
0026                         "test_Init.cpp",
0027                 ]
0028         }
0029 
0030         Test {
0031                 testName: "test_InplaceError"
0032 
0033                 files: [
0034                         "test_InplaceError.cpp",
0035                 ]
0036         }
0037 
0038         Test {
0039                 testName: "test_ExtensionInitializer"
0040 
0041                 files: [
0042                         "test_ExtensionInitializer.cpp",
0043                 ]
0044         }
0045 
0046         Test {
0047                 testName: "test_functions"
0048 
0049                 files: [
0050                         "test_functions.cpp",
0051                 ]
0052         }
0053 
0054         Test {
0055                 testName: "test_Exception"
0056 
0057                 files: [
0058                         "test_Exception.cpp",
0059                 ]
0060 
0061                 Depends { name: "Qt.concurrent" }
0062         }
0063 
0064         Test {
0065                 testName: "test_ExceptionMixin"
0066 
0067                 files: [
0068                         "test_ExceptionMixin.cpp",
0069                 ]
0070 
0071                 Depends { name: "Qt.concurrent" }
0072         }
0073 
0074         Test {
0075                 testName: "test_logging"
0076 
0077                 files: [
0078                         "test_logging.cpp",
0079                 ]
0080         }
0081 
0082         Test {
0083                 testName: "test_QML"
0084 
0085                 files: [
0086                         "test_QML.cpp",
0087                         "tst_Messenger.qml",
0088                 ]
0089 
0090                 Depends { name: "Qt.quick" }
0091         }
0092 
0093         Test {
0094                 testName: "test_Singleton"
0095 
0096                 files: [
0097                         "test_Singleton.cpp",
0098                 ]
0099         }
0100 
0101         Test {
0102                 testName: "test_Internationalizer"
0103 
0104                 vendor: "CuteHMI"
0105 
0106                 domain: "cutehmi.kde.org"
0107 
0108                 friendlyName: "CuteHMI internationalizer test"
0109 
0110                 description: "Tests internationalization support of CuteHMI extensions."
0111 
0112                 major: 0
0113 
0114                 i18n: true
0115 
0116                 files: [
0117                         "test_Internationalizer.cpp",
0118                  "data/cutehmi-2-test_internationalizer.qm",
0119          "data/cutehmi-2-test.pl_PL.qm",
0120          ]
0121 
0122                 FileTagger {
0123                         patterns: "*.qm"
0124                         fileTags: ["qm"]
0125                 }
0126 
0127                 Group {
0128                         name: "Translations"
0129                         fileTagsFilter: ["qm"]
0130                         qbs.install: true
0131                         qbs.installDir: cutehmi.dirs.translationsInstallSubdir
0132                 }
0133 
0134                 Group {
0135                         name: "Metadata"
0136                         fileTagsFilter: ["cutehmi.metadata.json"]
0137                         qbs.install: true
0138                         qbs.installDir: cutehmi.dirs.metadataInstallSubdir
0139                 }
0140 
0141                 Depends { name: "cutehmi.metadata" }
0142         }
0143 
0144         Test {
0145                 testName: "snippet_Singleton"
0146 
0147                 files: [
0148                         "snippet_Singleton.cpp",
0149                 ]
0150         }
0151 }
0152 
0153 //(c)C: Copyright © 2019-2020, Michał Policht <michal@policht.pl>. All rights reserved.
0154 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0155 //(c)C: This file is a part of CuteHMI.
0156 //(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
0157 //(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
0158 //(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI.  If not, see <https://www.gnu.org/licenses/>.
0159 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0160 //(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
0161 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0162 //(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.