File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -35,15 +35,16 @@ public static void testMethods(String[] args) {
3535 @ SuppressWarnings ("unchecked" )
3636 public static void testSpecifiedMethod (String className ,String methodName ){
3737 try {
38+ System .out .println ("======================================================================" );
3839 System .out .println ("startting : className:" + className + " methodName :" + methodName + "()" );
39- System .out .println ("result: " );
40+ System .out .println ("============================= OUTPUT ================================= " );
4041 Class <?> clazz = Class .forName (className );
4142 Constructor <?> c = clazz .getDeclaredConstructor ();
4243 c .setAccessible (true );
4344 clazz .getMethod (methodName ).invoke (c .newInstance ());
44- System .out .println ("success! " );
45+ System .out .println ("============================= SUCCESS ================================ " );
4546 }catch (Exception e ){
46- System .out .println ("fail! " );
47+ System .out .println ("============================= FAILED ================================ " );
4748 e .printStackTrace ();
4849 }
4950 }
You can’t perform that action at this time.
0 commit comments