Home | History | Annotate | Download | only in checkers
      1 /*
      2  * Copyright (c) 2007 Mockito contributors
      3  * This program is made available under the terms of the MIT License.
      4  */
      5 package org.mockito.internal.verification.checkers;
      6 
      7 import org.mockito.internal.reporting.Discrepancy;
      8 
      9 public class AtLeastDiscrepancy extends Discrepancy {
     10 
     11     public AtLeastDiscrepancy(int wantedCount, int actualCount) {
     12         super(wantedCount, actualCount);
     13     }
     14 
     15     @Override
     16     public String getPluralizedWantedCount() {
     17         return "*at least* " + super.getPluralizedWantedCount();
     18     }
     19 }