git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@686257 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2008-08-15 15:48:00 +00:00
parent c8bd57cdc7
commit 15fb25d653
2 changed files with 9 additions and 1 deletions

View File

@ -54,7 +54,7 @@ public class MBeanTest extends EmbeddedBrokerTestSupport {
protected Connection connection; protected Connection connection;
protected boolean transacted; protected boolean transacted;
protected int authMode = Session.AUTO_ACKNOWLEDGE; protected int authMode = Session.AUTO_ACKNOWLEDGE;
protected static final int MESSAGE_COUNT = 2*BaseDestination.DEFAULT_PAGE_SIZE; protected static final int MESSAGE_COUNT = 2*BaseDestination.MAX_PAGE_SIZE;
/** /**
* When you run this test case from the command line it will pause before * When you run this test case from the command line it will pause before

View File

@ -310,5 +310,13 @@ public class SubscriptionAddRemoveQueueTest extends TestCase {
public void removeDestination(Destination destination) { public void removeDestination(Destination destination) {
} }
/* (non-Javadoc)
* @see org.apache.activemq.broker.region.Subscription#countBeforeFull()
*/
public int countBeforeFull() {
// TODO Auto-generated method stub
return 10;
}
} }
} }