summaryrefslogtreecommitdiffstats
path: root/src/testlib/doc/snippets/code/src_corelib_kernel_qtestsupport_core_snippet.cpp
blob: f2ba321a67433b0478835dd7c9822acf808e371c (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
    MyObject obj;
    obj.startup();
    QTest::qWaitFor([&]() {
        return obj.isReady();
    }, 3000);
//! [0]