aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmltest/doc/snippets/testApp/tests/setup.cpp
blob: 92ef206e26cb327cdd2ca00ab318669514bf6089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// # Copyright (C) 2023 The Qt Company Ltd.
// # SPDX-License-Identifier: BSD-3-Clause

//! [setup]
#include "setup.h"

void Setup::applicationAvailable()
{
    // custom code that doesn't require QQmlEngine
}

void Setup::qmlEngineAvailable(QQmlEngine *engine)
{
    // add import paths
}

void Setup::cleanupTestCase()
{
    // custom code to clean up before destruction starts
}
//! [setup]