use of com.tonicartos.superslim.util.TestAdapterBuilder in project SuperSLiM by TonicArtos.
the class LinearLayoutTests method test_overscrollAtStartBeforeEnd.
@Test
public void test_overscrollAtStartBeforeEnd() throws Exception {
final int numItems = 1;
final int dy = 100;
RecyclerView.Adapter adapter;
int[] layoutPadding;
adapter = new TestAdapterBuilder().addLinearSection(numItems, Utils.RV_WIDTH, Utils.RV_HEIGHT - dy, null).build(mActivity);
layoutPadding = new int[] { 0, 0, 0, 0 };
Utils.doOverscrollTest(new int[] { 0, 0 }, layoutPadding, false, adapter, mLayoutManager, mRecyclerView);
}
use of com.tonicartos.superslim.util.TestAdapterBuilder in project SuperSLiM by TonicArtos.
the class LinearLayoutTests method test_overscrollAfterStartAfterEnd.
@Test
public void test_overscrollAfterStartAfterEnd() throws Exception {
final int padding = 20;
final int numItems = 1;
final int dy = 100;
RecyclerView.Adapter adapter;
int[] layoutPadding;
// Test once with padding.
adapter = new TestAdapterBuilder().addLinearSection(numItems, Utils.RV_WIDTH, Utils.RV_HEIGHT, null).build(mActivity);
layoutPadding = new int[] { 0, padding, 0, padding };
Utils.doOverscrollTest(new int[] { 0, dy }, layoutPadding, true, adapter, mLayoutManager, mRecyclerView);
// Test with no padding.
layoutPadding = new int[] { 0, 0, 0, 0 };
Utils.doOverscrollTest(new int[] { 0, dy }, layoutPadding, true, adapter, mLayoutManager, mRecyclerView);
}
Aggregations