@Test
public void sequence() {
System.setProperty( "CONSTRETTO_TAGS", "DEV" );
ApplicationContext context = new ClassPathXmlApplicationContext( "applicationContext.xml" );
ServiceContext serviceContext = (ServiceContext)context.getBean( "serviceContext" );
ForsendelsesArkiv forsendelsesArkiv2 = serviceContext.getForsendelsesArkiv();
String nextVal = forsendelsesArkiv2.getIdentifier();
assertEquals( 36, nextVal.length() );
}