View Javadoc
1   package org.myorg.encconfig.auditor.ejb.it;
2   
3   import org.junit.Ignore;
4   import org.myorg.encconfig.auditor.ejb.AuditorCheckerITBase;
5   import org.myorg.encconfig.ejb.AuditorRemote;
6   
7   //TODO: enc-config 17: activate this testcase
8   @Ignore
9   public class JNDIAuditorEJBIT extends AuditorCheckerITBase {
10  	private static final String jndiName = System.getProperty("jndi.name",
11  		"ejb:/encconfig-labex-ejb/JNDIAuditorEJB!" + AuditorRemote.class.getName());
12  	
13  	public JNDIAuditorEJBIT() {
14  		super(jndiName);
15  	}
16  }