##// END OF EJS Templates
Fix documentation...
Fix documentation Missing ChartTheme added. Example picture fixed. Change-Id: I51df1a31e424088f7f280198968697d1c7bc7f19 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2574:599370d0561c
r2632:698e1bd0e999
Show More
tst_chartviewsignals.qml
73 lines | 2.1 KiB | application/x-qml | QmlLexer
/ tests / auto / qml-qtquicktest / tst_chartviewsignals.qml
Tero Ahola
Unit test module for QML API
r2206 /****************************************************************************
**
Miikka Heikkinen
More copyright year changes
r2433 ** Copyright (C) 2013 Digia Plc
Tero Ahola
Unit test module for QML API
r2206 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Tero Ahola
Unit test module for QML API
r2206 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Tero Ahola
Unit test module for QML API
r2206 ** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 1.0
import QtQuickTest 1.0
Tero Ahola
Improved QML API test coverage
r2243 import QtCommercial.Chart 1.2
Tero Ahola
Unit test module for QML API
r2206
Rectangle {
width: 400
height: 300
TestCase {
id: tc1
Tero Ahola
Renamed QML QtQuick tests to match the naming convention
r2228 name: "tst_qml-qtquicktest ChartView Signals"
Tero Ahola
Unit test module for QML API
r2206 when: windowShown
// Verify onSeriesAdded and onSeriesRemoved signals
function test_chartView() {
var series = chartView.createSeries(ChartView.SeriesTypeLine, "line");
seriesAddedSpy.wait();
compare(seriesAddedSpy.count, 1, "ChartView.onSeriesAdded");
// Modifying layout triggers more than one plotAreaChanged signal
chartView.titleFont.pixelSize = 50;
verify(plotAreaChangedSpy.count > 0, "ChartView.onPlotAreaChanged");
chartView.removeSeries(series);
seriesRemovedSpy.wait();
compare(seriesRemovedSpy.count, 1, "ChartView.onSeriesAdded");
}
}
ChartView {
id: chartView
anchors.fill: parent
title: "Chart"
SignalSpy {
id: plotAreaChangedSpy
target: chartView
signalName: "plotAreaChanged"
}
SignalSpy {
id: seriesAddedSpy
target: chartView
signalName: "seriesAdded"
}
SignalSpy {
id: seriesRemovedSpy
target: chartView
signalName: "seriesRemoved"
}
}
}