List of usage examples for android.test AssertionFailedError AssertionFailedError
public AssertionFailedError()
From source file:org.droidparts.test.testcase.serialize.JSONTestCase.java
public void testCollectionsFail() throws Exception { try {//ww w . j a v a 2 s . c o m JSONSerializer<Collections> ser = makeSerializer(Collections.class); ser.deserialize(getJSONObject(R.raw.albums_partial_json)); } catch (Exception e) { assertTrue(e instanceof SerializerException); return; } throw new AssertionFailedError(); }