1 3 package org.jmock.core.matcher; 4 5 import org.jmock.core.Invocation; 6 import org.jmock.core.InvocationMatcher; 7 8 9 public abstract class StatelessInvocationMatcher implements InvocationMatcher 10 { 11 public void invoked( Invocation invocation ) { 12 } 14 15 public void verify() { 16 } 18 19 public boolean hasDescription() { 20 return true; 21 } 22 } | Popular Tags |