Searched refs:mActual (Results 1 – 5 of 5) sorted by relevance
41 private final Cursor mActual; field in CursorSubject45 this.mActual = new StringableCursor(actual); in CursorSubject()60 check("getCount()").that(mActual.getCount()).isEqualTo(count); in hasCount()65 check("getColumnNames()").that(mActual.getColumnNames()).asList() in hasColumnNames()71 check("moveToPosition").that(mActual.moveToPosition(position)).isTrue(); in atRow()77 check("getColumnCount()").that(mActual.getColumnCount()).isEqualTo(values.length); in hasRowValues()80 expectedValues.put(mActual.getColumnName(i), values[i].toString()); in hasRowValues()84 DatabaseUtils.cursorRowToContentValues(mActual, actualValues); in hasRowValues()86 check("Row: %s", mActual.getPosition()).that(actualValues).isEqualTo(expectedValues); in hasRowValues()101 int index = mActual.getColumnIndex(columnName); in hasRowValue()[all …]
83 private final WatchdogEventLogger mActual; field in WatchdogEventLogger.Subject87 mActual = subject; in Subject()103 .that(mActual.watchdogEventOccurred(type, logPackage, rollbackReason, in eventOccurred()
123 private int mActual; field in VersionInfo.InvalidVersionException134 mActual = actual; in InvalidVersionException()146 return mActual; in getActualVersion()
441 private ArrayList<String> mActual = Lists.newArrayList();444 mActual.add(new DataInputStream(in).readUTF());448 mActual.clear();452 assertEquals(Arrays.asList(expected), mActual);
1216 private final MotionEvent mActual; field in NotificationStackScrollLayoutTest.MotionEventSubject1219 mActual = actual; in MotionEventSubject()1223 assertThat(mActual.getActionMasked()).isEqualTo(expected.getActionMasked()); in matches()1224 assertThat(mActual.getDownTime()).isEqualTo(expected.getDownTime()); in matches()1225 assertThat(mActual.getEventTime()).isEqualTo(expected.getEventTime()); in matches()1226 assertThat(mActual.getX()).isEqualTo(expected.getX()); in matches()1227 assertThat(mActual.getY()).isEqualTo(expected.getY()); in matches()