HomeSort by relevance Sort by last modified time
    Searched refs:columnInteger (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/database/src/android/database/cts/
CursorWrapperTest.java 328 int columnInteger = cursorWrapper.getColumnIndexOrThrow("int_number");
340 assertEquals(NUMBER_LONG_INTEGER, cursorWrapper.getLong(columnInteger));
342 assertEquals(NUMBER_INTEGER, cursorWrapper.getInt(columnInteger));
344 assertEquals(NUMBER_SHORT, cursorWrapper.getShort(columnInteger));
MergeCursorTest.java 159 int columnInteger = mCursors[0].getColumnIndexOrThrow("int_number");
173 assertEquals(NUMBER_LONG_INTEGER - i, mergeCursor.getLong(columnInteger));
174 assertEquals(NUMBER_INTEGER - i, mergeCursor.getInt(columnInteger));
175 assertEquals(NUMBER_SHORT - i, mergeCursor.getShort(columnInteger));

Completed in 577 milliseconds