summaryrefslogtreecommitdiff
path: root/tests/tst_qml/tst_quickstreamer.qml
blob: e4dac1e5d91d287e78d66bd422aa9ee2e84c1018 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick 2.0
import QtTest 1.0
import QuickStreamer 1.0

TestCase {
    name: "QuickStreamer"

    AppSrc {
        id: appSource
        name: "brouhaha"
    }

    AppSink {
        id: appSink
    }

    function test_properties()
    {
        console.log([appSink.name, appSource.name])
        compare(appSink.name, "appsink0")
        compare(appSource.name, "brouhaha")
    }
}