use of com.reactnativenavigation.options.params.NullBool in project react-native-navigation by wix.
the class ComponentOptions method reset.
public void reset() {
name = new NullText();
componentId = new NullText();
alignment = Alignment.Default;
waitForRender = new NullBool();
width = new NullNumber();
height = new NullNumber();
}
use of com.reactnativenavigation.options.params.NullBool in project react-native-navigation by wix.
the class ViewControllerTest method isRendered_returnsTrueForEveryViewByDefault.
@Test
public void isRendered_returnsTrueForEveryViewByDefault() {
uut.setWaitForRender(new NullBool());
uut.view = mock(ViewGroup.class);
assertThat(uut.isRendered()).isTrue();
}
Aggregations