Search in sources :

Example 1 with EventCommand

use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.

the class OnScrollAttributeTest method setUp.

@Before
public void setUp() {
    attribute = new OnScrollAttribute();
    eventCommand = new EventCommand();
}
Also used : EventCommand(org.robobinding.widget.EventCommand) Before(org.junit.Before)

Example 2 with EventCommand

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();
}
Also used : EventCommand(org.robobinding.widget.EventCommand) Before(org.junit.Before)

Example 3 with EventCommand

use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.

the class OnRatingBarChangeAttributeTest method setUp.

@Before
public void setUp() {
    view.setNumStars(NUM_STARS_TO_SHOW);
    attribute = new OnRatingBarChangeAttribute();
    eventCommand = new EventCommand();
}
Also used : EventCommand(org.robobinding.widget.EventCommand) Before(org.junit.Before)

Example 4 with EventCommand

use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.

the class OnTextChangedAttributeTest method setUp.

@Before
public void setUp() {
    view = new EditText(RuntimeEnvironment.application);
    eventCommand = new EventCommand();
}
Also used : EditText(android.widget.EditText) EventCommand(org.robobinding.widget.EventCommand) Before(org.junit.Before)

Example 5 with EventCommand

use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.

the class OnSeekBarChangeAttributeTest method setUp.

@Before
public void setUp() {
    attribute = new OnSeekBarChangeAttribute();
    eventCommand = new EventCommand();
}
Also used : EventCommand(org.robobinding.widget.EventCommand) Before(org.junit.Before)

Aggregations

Before (org.junit.Before)17 EventCommand (org.robobinding.widget.EventCommand)17 SwipeRefreshLayout (android.support.v4.widget.SwipeRefreshLayout)1 EditText (android.widget.EditText)1 ListAdapter (android.widget.ListAdapter)1 SingleChoiceAdapter (org.robobinding.widget.abslistview.SingleChoiceAdapter)1