1 26 27 package net.sourceforge.groboutils.codecoverage.v2.compiler.testcode; 28 29 30 31 38 public class Case3 39 { 40 static final int a = 1; 41 static final int b = 2; 42 static final int c = 3; 43 static final int d = 4; 44 static int j = -1; 45 public static void main( String [] args ) 46 { 47 String res = null; 48 switch (j) 49 { 50 case 0: 51 res = "0"; 52 return; 53 case a: 54 res = "1"; 55 return; 56 case b: 57 res = "2"; 58 return; 59 case c: 60 res = "3"; 61 return; 62 case d: 63 res = "4"; 64 return; 65 } 66 Passed.passed( "Case3" ); 67 } 68 } 69 70 | Popular Tags |