You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
346 B

ClassLoader.loadClass() is expected to throw an exception, usually
ClassNotFound, if it can't find the given Class, and not return null.
This is a regression test for a defect in Dalvik, which was assuming
that if there was no exception, the value returned would be non-null.
This test is not expected to work for the reference implementation.