Clover Coverage Report - JDBC Support Utilities 1.1.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
5   17   2   5
0   13   0.4   1
1     2  
1    
 
  ConsoleOutputTest       Line # 5 5 0% 2 6 0% 0.0
 
No Tests
 
1    package org.kuali.db.jdbc;
2   
3    import junit.framework.TestCase;
4   
 
5    public class ConsoleOutputTest extends TestCase {
6   
 
7  0 toggle public void test1() {
8  0 try {
9  0 String backspace = '\b' + "";
10  0 System.out.println("foo" + backspace);
11  0 System.out.print('\b');
12    } catch (Exception e) {
13  0 e.printStackTrace();
14    }
15    }
16   
17    }