// File DDTest2.java
// Tests all < base limits but too many > 0
// 0s at the beginning of the list
public class DDTest2 {

   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, 0, 0, 1.05, 1.07, .03, 0.4);
      
      if (athlete.examine(limit))
      
         System.out.println("examine results");
         
      else
      
         System.out.println("no concerns");
         
   }
}

