android.widget.SimpleCursorAdapter.CursorToStringConverter

Here are the examples of the java api class android.widget.SimpleCursorAdapter.CursorToStringConverter taken from open source projects.

1. SimpleCursorAdapterAssert#hasCursorToStringConverter()

Project: assertj-android
File: SimpleCursorAdapterAssert.java
public SimpleCursorAdapterAssert hasCursorToStringConverter(CursorToStringConverter converter) {
    isNotNull();
    CursorToStringConverter actualConverter = actual.getCursorToStringConverter();
    //
    assertThat(actualConverter).overridingErrorMessage("Expected cursor 'toString' converter <%s> but was <%s>.", converter, //
    actualConverter).isSameAs(converter);
    return this;
}