Clover Coverage Report - Maven Eclipse Formatter Plugin 1.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
8   23   3   8
2   20   0.38   1
1     3  
1    
 
  Foo       Line # 8 8 0% 3 11 0% 0.0
 
No Tests
 
1    package org.codehaus.mojo.exec;
2   
3    import java.util.ArrayList;
4    import java.util.Collections;
5    import java.util.List;
6    import java.util.Properties;
7   
 
8    public class Foo {
 
9  0 toggle public static void main(String[] args) {
10  0 Properties props = System.getProperties();
11  0 List<String> keys = new ArrayList<String>(props.stringPropertyNames());
12  0 Collections.sort(keys);
13  0 for (String key : keys) {
14  0 if (key.startsWith("os") || key.startsWith("java")) {
15  0 System.out.println(key + "=" + props.getProperty(key));
16    } else {
17  0 System.out.println(key);
18    }
19    }
20  0 System.out.println(props.getProperty("java.home"));
21   
22    }
23    }