Home
last modified time | relevance | path

Searched refs:wasNotifyDataSetChangedCalled (Results 1 – 2 of 2) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBaseAdapter.java14 private boolean wasNotifyDataSetChangedCalled; field in ShadowBaseAdapter
18 wasNotifyDataSetChangedCalled = true; in notifyDataSetChanged()
23 wasNotifyDataSetChangedCalled = false; in clearWasDataSetChangedCalledFlag()
26 public boolean wasNotifyDataSetChangedCalled() { in wasNotifyDataSetChangedCalled() method in ShadowBaseAdapter
27 return wasNotifyDataSetChangedCalled; in wasNotifyDataSetChangedCalled()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowBaseAdapterTest.java20 assertTrue(shadowOf(adapter).wasNotifyDataSetChangedCalled()); in shouldRecordNotifyDataSetChanged()
28 assertFalse(shadowOf(adapter).wasNotifyDataSetChangedCalled()); in canResetNotifyDataSetChangedFlag()