use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnItemSelectedAttributeTest method setUp.
@Before
public void setUp() {
attribute = new OnItemSelectedAttribute();
eventCommand = new EventCommand();
adapter = new MockArrayAdapter(RuntimeEnvironment.application);
view.setAdapter(adapter);
indexToSelect = RandomValues.anyIndex(adapter.getCount());
}
use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnCheckedChangeAttributeTest method setUp.
@Before
public void setUp() {
attribute = new OnCheckedChangeAttribute();
eventCommand = new EventCommand();
}
use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnScrollStateChangedAttributeTest method setUp.
@Before
public void setUp() {
attribute = new OnScrollStateChangedAttribute();
eventCommand = new EventCommand();
}
use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnClickAttributeTest method setUp.
@Before
public void setUp() {
attribute = new OnClickAttribute();
eventCommand = new EventCommand();
}
use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnFocusAttributeTest method setUp.
@Before
public void setUp() {
attribute = new OnFocusAttribute();
eventCommand = new EventCommand();
}
Aggregations