Hello guys, I have come across a problem. When I was writing a test case, I need to use classes which are not included in the RI, like class org.apache.harmony.x.imageio.plugins.jpeg.JPEGImageReaderSpi. So, when the test case runs on RI, there’s always a ClassDefNotFound error occur even though the it passed on Harmony. If I import the SUN’s version of JPEGImageReaderSpi (com.sun.imageio.plugins.jpeg.JPEGImageReaderSpi), the test case failed on Harmony. So, I am wondering how to deal this problem properly? Is there any way to avoid the problem?
Thanks, Lang