Updated to no longer use deprecated junit.framework.Assert

This commit is contained in:
Kevin Earls 2014-09-29 10:54:18 +02:00
parent 8163b0b95e
commit 8f138473de
3 changed files with 1 additions and 4 deletions

View File

@ -25,7 +25,7 @@ import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static junit.framework.Assert.assertEquals;
import static org.junit.Assert.*;
public class DestinationsPluginTest {

View File

@ -16,7 +16,6 @@
*/
package org.apache.activemq.bugs;
import junit.framework.Assert;
import junit.framework.TestCase;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.broker.BrokerService;

View File

@ -32,8 +32,6 @@ import java.io.IOException;
import java.net.URI;
import java.util.LinkedList;
import static junit.framework.Assert.assertNotNull;
import static junit.framework.Assert.assertNull;
import static org.apache.activemq.TestSupport.*;
/**