use of com.reactnativenavigation.viewcontrollers.stack.topbar.button.BackButtonHelper in project react-native-navigation by wix.
the class BackButtonHelperTest method beforeEach.
@Override
public void beforeEach() {
uut = new BackButtonHelper();
Activity activity = newActivity();
ChildControllersRegistry childRegistry = new ChildControllersRegistry();
stack = TestUtils.newStackController(activity).setChildRegistry(childRegistry).setBackButtonHelper(uut).build();
child1 = spy(new SimpleViewController(activity, childRegistry, "child1", new Options()));
child2 = spy(new SimpleViewController(activity, childRegistry, "child2", new Options()));
stack.ensureViewIsCreated();
}
Aggregations