use of com.twosigma.beakerx.widget.IntSlider in project beakerx by twosigma.
the class IntSliderTest method setOrientation_hasThatOrientation.
@Test
public void setOrientation_hasThatOrientation() throws Exception {
String expected = "test";
// given
IntSlider intSlider = intSlider();
// when
intSlider.setOrientation(expected);
// then
Assertions.assertThat(intSlider.getOrientation()).isEqualTo(expected);
}
Aggregations