Class CallOnceExpectation

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object call​(Mock mock, java.lang.String methodName, java.lang.Object[] args)  
      java.lang.String getDescription()  
      boolean matches​(java.lang.String methodName, java.lang.Object[] args)  
      java.lang.String toString()  
      void verify()
      Throw an AssertionFailedException if any expectations have not been met.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CallOnceExpectation

        public CallOnceExpectation​(Callable delegate)
    • Method Detail

      • getDescription

        public java.lang.String getDescription()
        Specified by:
        getDescription in interface Callable
      • call

        public java.lang.Object call​(Mock mock,
                                     java.lang.String methodName,
                                     java.lang.Object[] args)
                              throws java.lang.Throwable
        Specified by:
        call in interface Callable
        Throws:
        java.lang.Throwable
      • matches

        public boolean matches​(java.lang.String methodName,
                               java.lang.Object[] args)
        Specified by:
        matches in interface Callable
      • verify

        public void verify()
        Description copied from interface: Verifiable
        Throw an AssertionFailedException if any expectations have not been met.
        Specified by:
        verify in interface Verifiable
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object