mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-07 09:05:25 +02:00

- add QtQuickTest, QtTest and googletest support - create tests folder within cmake hierarchy - avoid using wildcards in Dockerfile Change-Id: I81661a86757f01333538908dbc81a0bafae00ab7
10 lines
153 B
QML
10 lines
153 B
QML
import QtQuick 2.14
|
|
import QtTest 1.2
|
|
|
|
TestCase {
|
|
name: "DummyTests"
|
|
|
|
function test_dummy() {
|
|
verify(true, "dummy test failed!")
|
|
}
|
|
}
|