1 package integrationTests; 2 3 import org.slf4j.Logger; 4 import org.slf4j.LoggerFactory; 5 6 /** 7 * The Class ClassNotExercised. 8 */ 9 public final class ClassNotExercised { 10 11 /** The logger. */ 12 private static final Logger logger = LoggerFactory.getLogger(ClassNotExercised.class); 13 14 /** 15 * Do something. 16 * 17 * @param i 18 * the i 19 * @param s 20 * the s 21 * 22 * @return true, if successful 23 */ 24 public boolean doSomething(int i, String s) { 25 if (i > 0) { 26 logger.info(s); 27 } 28 29 return s.length() > 0; 30 } 31 }