@qooxdoo/framework
Version:
The JS Framework for Coders
53 lines (38 loc) • 1.47 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2014 1&1 Internet AG, Germany, http://www.1und1.de
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Tobias Oberrauch <tobias.oberrauch@1und1.de>
************************************************************************ */
qx.Class.define("qx.test.ui.form.RadioButtonGroup",
{
extend: qx.test.ui.LayoutTestCase,
members: {
setUp: function () {
this.__radioButtonGroup = new qx.ui.form.RadioButtonGroup();
this.__radioButtons = [];
var radioButton;
for (var i = 0, j = 10; i < j; i++) {
radioButton = new qx.ui.form.RadioButton("option " + i);
radioButton.setModel("option" + i);
this.__radioButtons.push(radioButton);
this.__radioButtonGroup.add(radioButton);
}
},
tearDown: function () {
this.base(arguments);
this.__radioButtonGroup.removeAll();
this.__radioButtons = null;
},
testRemoveAll: function () {
this.__radioButtonGroup.removeAll();
var amountOfRadioButtons = this.__radioButtonGroup.getRadioGroup().getItems().length;
this.assertEquals(0, amountOfRadioButtons, "There are still some radio buttons left.");
}
}
});