Package whitewerx.com.trapos.translators

Examples of whitewerx.com.trapos.translators.RateTranslator.canHandle()


    @Test
    public void shouldTransalateRateMessages(){
        String delimitedRate = "R";
       
        RateTranslator rateTranslator = new RateTranslator();
        assertThat(rateTranslator.canHandle(delimitedRate), equalTo(true));
    }
   
    @Test
    public void shouldNotTranslateAnyOtherMessageTypes(){
        String otherMessageType = "C";
View Full Code Here


    @Test
    public void shouldNotTranslateAnyOtherMessageTypes(){
        String otherMessageType = "C";
       
        RateTranslator rateTranslator = new RateTranslator();
        assertThat(rateTranslator.canHandle(otherMessageType), equalTo(false));
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.