File mockobjects-MockQueueSender.patch of Package mockobjects
--- src/j2ee/common/com/mockobjects/jms/MockQueueSender.java.sav 2002-02-22 17:25:05.000000000 +0100
+++ src/j2ee/common/com/mockobjects/jms/MockQueueSender.java 2006-09-11 13:19:49.000000000 +0200
@@ -37,4 +37,22 @@
public void setExpectedSendCalls(int callCount) {
mySendCalls.setExpected(callCount);
}
-}
\ No newline at end of file
+
+ public void send(Destination destination,Message message,int deliveryMode,
+int priority,long timeToLive)
+ throws JMSException{
+ notImplemented();
+ }
+
+ public void send(Destination destination,Message message)
+ throws JMSException{
+ notImplemented();
+ }
+
+ public Destination getDestination()
+ throws JMSException{
+ notImplemented();
+ return null;
+ }
+
+}