// File DDTest3.java
// Tests all < base limits some (but not enough to be concerned) > 0, 0s
// at the beginning of the list
public class DDTest3 {

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

