summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/scatter3d/tst_basic.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmltest/scatter3d/tst_basic.qml')
-rw-r--r--tests/auto/qmltest/scatter3d/tst_basic.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/qmltest/scatter3d/tst_basic.qml b/tests/auto/qmltest/scatter3d/tst_basic.qml
index b9d9c93c..985236be 100644
--- a/tests/auto/qmltest/scatter3d/tst_basic.qml
+++ b/tests/auto/qmltest/scatter3d/tst_basic.qml
@@ -68,6 +68,12 @@ Item {
compare(empty.height, 0, "height")
compare(empty.seriesList.length, 0, "seriesList")
compare(empty.selectedSeries, null, "selectedSeries")
+ compare(empty.axisX.orientation, AbstractAxis3D.AxisOrientationX)
+ compare(empty.axisZ.orientation, AbstractAxis3D.AxisOrientationZ)
+ compare(empty.axisY.orientation, AbstractAxis3D.AxisOrientationY)
+ compare(empty.axisX.type, AbstractAxis3D.AxisTypeValue)
+ compare(empty.axisZ.type, AbstractAxis3D.AxisTypeValue)
+ compare(empty.axisY.type, AbstractAxis3D.AxisTypeValue)
}
}