Class CallCount


  • public class CallCount
    extends java.lang.Object
    Represents a number range, for use in expressing the limits on the number of expected methods calls to be observed.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int max  
      private int min  
    • Constructor Summary

      Constructors 
      Constructor Description
      CallCount​(int min, int max)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getMax()  
      int getMin()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • min

        private final int min
      • max

        private final int max
    • Constructor Detail

      • CallCount

        public CallCount​(int min,
                         int max)
    • Method Detail

      • getMin

        public int getMin()
      • getMax

        public int getMax()