Coverage Report - org.webslinger.json.Main
 
Classes in this File Line Coverage Branch Coverage Complexity
Main
0%
0/5
N/A
1
 
 1  
 package org.webslinger.json;
 2  
 
 3  0
 public class Main {
 4  
     public static void main(String[] args) throws Exception {
 5  0
         JSON json = new JSON(System.in);
 6  0
         Object value = json.JSONValue();
 7  0
         System.err.println("value=" + value);
 8  0
     }
 9  
 }