Repository: activemq Updated Branches: refs/heads/activemq-5.15.x ab41382b0 -> 7518da17e
Fix AMQ7076Test compile and ASF header Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/7518da17 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/7518da17 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/7518da17 Branch: refs/heads/activemq-5.15.x Commit: 7518da17ed1ec08b99322216daf1ec95e36595d4 Parents: ab41382 Author: Jean-Baptiste Onofré <[email protected]> Authored: Fri Oct 19 07:30:23 2018 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Fri Oct 19 07:30:23 2018 +0200 ---------------------------------------------------------------------- .../org/apache/activemq/bugs/AMQ7067Test.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/7518da17/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ7067Test.java ---------------------------------------------------------------------- diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ7067Test.java b/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ7067Test.java index 18b4b41..99de561 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ7067Test.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ7067Test.java @@ -1,3 +1,19 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.apache.activemq.bugs; import org.apache.activemq.ActiveMQConnectionFactory; @@ -13,9 +29,12 @@ import org.apache.activemq.broker.jmx.QueueViewMBean; import org.apache.activemq.broker.jmx.RecoveredXATransactionViewMBean; import org.apache.activemq.command.TransactionId; import org.apache.activemq.command.XATransactionId; +import org.apache.activemq.store.kahadb.KahaDBPersistenceAdapter; +import org.apache.activemq.store.kahadb.MessageDatabase; import org.apache.activemq.util.JMXSupport; import org.apache.activemq.util.Wait; import org.apache.commons.lang.StringUtils; +import org.apache.log4j.Level; import org.junit.After; import org.junit.Before; import org.junit.Test;
