package org.marketcetera.options; import org.marketcetera.core.ClassVersion; import org.marketcetera.util.l10n.MessageComparator; import org.junit.Test; import static org.junit.Assert.assertTrue; /* $License$ */ /** * Tests that all messages in this package are mapped correctly * * @author anshul@marketcetera.com * @version $Id: MessagesTest.java 16154 2012-07-14 16:34:05Z colin $ * @since 2.0.0 */ @ClassVersion("$Id: MessagesTest.java 16154 2012-07-14 16:34:05Z colin $") public class MessagesTest { @Test public void messagesMatch() throws Exception { MessageComparator comparator=new MessageComparator(Messages.class); assertTrue(comparator.getDifferences(),comparator.isMatch()); } }