mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-06-28 22:35:51 +00:00
Initial revision
From-SVN: r102074
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
public class ClassForNameTest
|
||||
{
|
||||
public static void main(String args[]) {
|
||||
Class c;
|
||||
/* test for both success and failure */
|
||||
|
||||
try {
|
||||
c = Class.forName("ClassForNameTest");
|
||||
}
|
||||
catch (Exception e) {
|
||||
System.out.println("FAILED: Couldn't find ClassForNameTest.");
|
||||
System.exit(0);
|
||||
}
|
||||
|
||||
try {
|
||||
c = Class.forName("ClazzForNameT3st");
|
||||
}
|
||||
catch (Exception e) {
|
||||
System.out.println("PASSED: passed both success and failure cases for Class.forName");
|
||||
System.exit(0);
|
||||
}
|
||||
|
||||
System.out.println("FAILED: Didn't raise exception for incorrect class name.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user