Home
last modified time | relevance | path

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

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBaseAdapter.java17 private boolean wasNotifyDataSetChangedCalled; field in ShadowBaseAdapter
59 wasNotifyDataSetChangedCalled = true; in notifyDataSetChanged()
76 wasNotifyDataSetChangedCalled = false; in clearWasDataSetChangedCalledFlag()
79 public boolean wasNotifyDataSetChangedCalled() { in wasNotifyDataSetChangedCalled() method in ShadowBaseAdapter
80 return wasNotifyDataSetChangedCalled; in wasNotifyDataSetChangedCalled()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DBaseAdapterTest.java20 assertTrue(shadowOf(adapter).wasNotifyDataSetChangedCalled()); in shouldRecordNotifyDataSetChanged()
28 assertFalse(shadowOf(adapter).wasNotifyDataSetChangedCalled()); in canResetNotifyDataSetChangedFlag()