2024-04-12 14:40:49 +02:00
|
|
|
-- Copyright (C) 2024 The Qt Company Ltd.
|
|
|
|
|
-- SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
return {
|
|
|
|
|
Name = "LuaTests",
|
|
|
|
|
Version = "1.0.0",
|
|
|
|
|
CompatVersion = "1.0.0",
|
|
|
|
|
Vendor = "The Qt Company",
|
|
|
|
|
Category = "Tests",
|
|
|
|
|
DisabledByDefault = true,
|
|
|
|
|
Experimental = true,
|
|
|
|
|
Description = "This plugin tests the Lua API.",
|
|
|
|
|
LongDescription = [[
|
|
|
|
|
It has tests for (almost) all functionality exposed by the API.
|
|
|
|
|
]],
|
|
|
|
|
Dependencies = {
|
2024-06-13 07:39:17 +02:00
|
|
|
{ Name = "Lua", Version = "14.0.0" }
|
2024-04-12 14:40:49 +02:00
|
|
|
},
|
|
|
|
|
setup = function() require 'tests'.setup() end,
|
2024-05-06 16:50:04 +02:00
|
|
|
printToOutputPane = true,
|
2024-04-12 14:40:49 +02:00
|
|
|
} --[[@as QtcPlugin]]
|