001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.jms;
007
008/**
009 * <p>JMSTopicPublisherTest class.</p>
010 *
011 * @author awoods
012 */
013public class JMSTopicPublisherTest extends AbstractJMSPublisherTest {
014    protected AbstractJMSPublisher getPublisher() {
015        return new JMSTopicPublisher();
016    }
017}