1 26 27 package net.sourceforge.groboutils.codecoverage.v2.compiler.testcode; 28 29 30 31 38 public class Case1 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 = 2; 45 public static void main( String [] args ) 46 { 47 String res = null; 48 switch (j) 49 { 50 case 0: 51 res = "0"; 52 break; 53 case a: 54 res = "1"; 55 break; 56 case b: 57 res = null; 58 Passed.passed( "Case1" ); 59 case c: 60 res = "3"; 61 break; 62 case d: 63 res = "4"; 64 break; 65 default: 66 res = "default"; 67 } 68 } 69 } 70 71 | Popular Tags |