UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

59 lines (41 loc) 1.44 kB
/* ************************************************************************ qooxdoo - the new era of web development http://qooxdoo.org Copyright: 2011 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: * Tino Butz (tbtz) ************************************************************************ */ qx.Class.define("qx.test.mobile.form.ToggleButton", { extend: qx.test.mobile.MobileTestCase, members: { testValue() { var button = new qx.ui.mobile.form.ToggleButton(true); this.getRoot().add(button); this.assertBoolean(button.getValue()); this.assertTrue(button.getValue()); this.assertTrue( qx.bom.element.Class.has(button.getContentElement(), "checked") ); this.assertEventFired(button, "changeValue", function () { button.setValue(false); }); this.assertFalse(button.getValue()); button.destroy(); }, testToggle() { var button = new qx.ui.mobile.form.ToggleButton(true); this.getRoot().add(button); this.assertBoolean(button.getValue()); this.assertTrue(button.getValue()); button.toggle(); this.assertFalse(button.getValue()); button.toggle(); this.assertTrue(button.getValue()); button.destroy(); } } });