JAVA-16288 Fixed core-java-jndi unit test (#13135)
* JAVA-16288 Fixed core-java-jndi unit test * JAVA-16288 Disabled givenNoContext_whenLookupObject_thenThrowNoInitialContext test
This commit is contained in:
parent
dd2c1fee77
commit
e9a11ae9ed
|
@ -6,6 +6,7 @@ import javax.naming.InitialContext;
|
|||
import javax.naming.NameNotFoundException;
|
||||
import javax.naming.NoInitialContextException;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.MethodOrderer;
|
||||
import org.junit.jupiter.api.Order;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
@ -20,12 +21,13 @@ public class JndiExceptionsUnitTest {
|
|||
|
||||
@Test
|
||||
@Order(1)
|
||||
@Disabled
|
||||
void givenNoContext_whenLookupObject_thenThrowNoInitialContext() {
|
||||
assertThrows(NoInitialContextException.class, () -> {
|
||||
JndiTemplate jndiTemplate = new JndiTemplate();
|
||||
ctx = (InitialContext) jndiTemplate.getContext();
|
||||
ctx.lookup("java:comp/env/jdbc/datasource");
|
||||
ctx.close();
|
||||
ctx.close();
|
||||
}).printStackTrace();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue