Search in sources :

Example 1 with NoSuchFieldException

use of com.orm.androrm.field.NoSuchFieldException in project androrm by androrm.

the class FilterTest method testNoSuchFieldException.

public void testNoSuchFieldException() {
    Filter filter = new Filter();
    filter.is("no_such_field", "value");
    try {
        Brand.objects(getContext()).filter(filter);
        fail();
    } catch (NoSuchFieldException e) {
    }
}
Also used : Filter(com.orm.androrm.Filter) NoSuchFieldException(com.orm.androrm.field.NoSuchFieldException)

Aggregations

Filter (com.orm.androrm.Filter)1 NoSuchFieldException (com.orm.androrm.field.NoSuchFieldException)1