Clover Coverage Report - AWS S3 Wagon 1.0.24
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
10   32   2   10
0   19   0.2   1
1     2  
1    
 
  Foo       Line # 9 10 0% 2 11 0% 0.0
 
No Tests
 
1    package org.kuali.maven.wagon;
2   
3    import java.io.ByteArrayOutputStream;
4    import java.io.PrintStream;
5   
6    /**
7    *
8    */
 
9    public class Foo {
10   
11    /**
12    * @param args
13    */
 
14  0 toggle public static void main(final String[] args) {
15  0 try {
16  0 PrintStream oldOut = System.out;
17   
18  0 ByteArrayOutputStream bytesOut = new ByteArrayOutputStream();
19  0 PrintStream newOut = new PrintStream(bytesOut);
20  0 System.setOut(newOut);
21  0 System.out.print("foo");
22   
23  0 String s = bytesOut.toString() + " bar";
24  0 System.setOut(oldOut);
25  0 System.out.println(s);
26   
27    } catch (Exception e) {
28  0 e.printStackTrace();
29    }
30    }
31   
32    }