Hashtable<String, String> parameter = new Hashtable<String, String>(this.fixture.getParamter());
parameter.put(SessionParameter.SESSION_TYPE, SessionType.TRANSIENT.value());
try {
@SuppressWarnings("unused")
Session s = factory.createSession(parameter);
Assert.fail("CmisNotSupportedException expected, because Transient Session is not supported yet.");
} catch (CmisNotSupportedException e) {
}
}