@qooxdoo/framework
Version:
The JS Framework for Coders
79 lines (63 loc) • 1.85 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2007-2008 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:
* Christian Hagendorn (chris_schmidt)
************************************************************************ */
qx.Class.define("qx.test.ui.selection.SelectBox",
{
extend : qx.test.ui.selection.AbstractSingleSelectonTest,
members :
{
setUp : function()
{
var length = 10;
this._notInSelection = [];
this._mode = "one";
this._widget = new qx.ui.form.SelectBox();
this.getRoot().add(this._widget);
for (var i = 0; i < length; i++) {
var item = new qx.ui.form.ListItem("ListItem" + i);
this._widget.add(item);
if (i == 5) {
this._widget.setSelection([item]);
this._selection = [item];
} else {
this._notInSelection.push(item);
}
}
this.flush();
},
tearDown : function()
{
this.base(arguments);
this._widget.destroy();
this._widget = null;
this._selection = null;
this._notInSelection = null;
this.flush();
},
testResetSelectionAllowEmpty : function()
{
this._mode = "single";
this._widget.getChildrenContainer().setSelectionMode(this._mode);
this.testResetSelection();
},
_getChildren : function()
{
if (this._widget != null) {
return this._widget.getChildrenContainer().getChildren();
} else {
return [];
}
},
_createTestElement : function(name) {
return new qx.ui.form.ListItem(name);
}
}
});