Package no.kommune.bergen.soa.svarut

Source Code of no.kommune.bergen.soa.svarut.OrgnrTest

package no.kommune.bergen.soa.svarut;

import no.kommune.bergen.soa.svarut.domain.Orgnr;

import org.junit.Assert;
import org.junit.Test;

public class OrgnrTest {

  @Test
  public void createOrgOk() {
    String orgnr = "123456789";
    Assert.assertEquals( orgnr, new Orgnr( orgnr ).toString() );
  }

  @Test(expected = java.lang.IllegalArgumentException.class)
  public void createOrgFail() {
    String orgnr = "1234567";
    Assert.assertEquals( orgnr, new Orgnr( orgnr ).toString() );
  }

}
TOP

Related Classes of no.kommune.bergen.soa.svarut.OrgnrTest

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.