// File DDTest5.java
// First reading exceeds the limit
public class DDTest5 {

   public static void main (String [] args) {
   
      DrugData limit = new DrugData(.2, .3, .2, 1.1, 1.1, .25, 0.7);
      
      DrugData athlete = new DrugData(0.3, 0, 0, 0, 0, 0, 0);
      
      if (athlete.examine(limit))
      
         System.out.println("examine results");
         
      else
      
         System.out.println("no concerns");
         
   }
}

