AutoTest: Allow registering ITestTools

Task-number: QTCREATORBUG-23332
Change-Id: I529b1cc1f110739c264c7a021aada063f697b1db
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2020-10-19 14:46:21 +02:00
parent 81f3452e1c
commit c217f0694d
12 changed files with 293 additions and 40 deletions

View File

@@ -41,6 +41,13 @@ class TestTreeItem;
class ITestBase
{
public:
enum TestBaseType
{
None = 0x0,
Framework = 0x1,
Tool = 0x2
};
explicit ITestBase(bool activeByDefault);
virtual ~ITestBase() = default;