1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtTest
TestCase {
name: "BasicTests"
function test_pass() {
compare(2 + 2, 4, "2 + 2")
}
function test_fail() {
expectFail("", "this is the fail we wanted")
compare(2 + 2, 5, "2 + 2")
}
function test_skip() {
skip("skipping")
}
function test_expecting() {
expectFail("", "this is the fail we wanted")
verify(false)
}
function test_table_data() {
return [
{tag: "2 + 2 = 4", a: 2, b: 2, answer: 4 },
{tag: "2 + 6 = 8", a: 2, b: 6, answer: 8 },
{tag: "2 + 2 = 5", a: 2, b: 2, answer: 5 }, // fail
]
}
function test_table(data) {
if (data.answer === 5)
expectFail("", "this is the fail we wanted")
compare(data.a + data.b, data.answer)
}
}
|