1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-07 09:05:25 +02:00
jami-client-qt/tests/qml/tst_test.qml
ababi 4048a9d710 tests: add first samples for c++ and qml testing
- add QtQuickTest, QtTest and googletest support
- create tests folder within cmake hierarchy
- avoid using wildcards in Dockerfile

Change-Id: I81661a86757f01333538908dbc81a0bafae00ab7
2020-11-06 10:53:34 -05:00

10 lines
153 B
QML

import QtQuick 2.14
import QtTest 1.2
TestCase {
name: "DummyTests"
function test_dummy() {
verify(true, "dummy test failed!")
}
}