Package br.com.caelum.stella.formatter

Source Code of br.com.caelum.stella.formatter.NITFormatterTest

package br.com.caelum.stella.formatter;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import org.junit.Before;
import org.junit.Test;

import br.com.caelum.stella.format.Formatter;
import br.com.caelum.stella.format.NITFormatter;

public class NITFormatterTest {

    private Formatter formatter;

    @Before
    public void before() {
        formatter = new NITFormatter();
    }

    @Test
    public void testFormat() {
        String unfotmatedValue = "17033259504";
        String formatedValue = formatter.format(unfotmatedValue);
        assertEquals(formatedValue, "170.33259.50-4");
    }

    @Test
    public void testUnformat() {
        String fotmatedValue = "170.33259.50-4";
        String unformatedValue = formatter.unformat(fotmatedValue);
        assertEquals(unformatedValue, "17033259504");
    }

    @Test
  public void verifyIfAValueIsAlreadyFormattedOrNot() throws Exception {
    assertTrue(formatter.isFormatted("170.33259.50-4"));
    assertFalse(formatter.isFormatted("17033259504"));
    assertFalse(formatter.isFormatted("170.C32b9.50-a"));
  }

    @Test
  public void verifyIfAValueCanBeFormattedOrNot() throws Exception {
    assertFalse(formatter.canBeFormatted("170.33259.50-4"));
    assertTrue(formatter.canBeFormatted("17033259504"));
    assertFalse(formatter.canBeFormatted("170.C32b9.50-a"));
  }
}
TOP

Related Classes of br.com.caelum.stella.formatter.NITFormatterTest

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.