use of com.notnoop.apns.ApnsService in project camel by apache.
the class ApnsServiceFactoryTest method testApnsServiceFactoryAsPool1.
@Test
public void testApnsServiceFactoryAsPool1() throws Exception {
ApnsServiceFactory apnsServiceFactory = createApnsServiceFactoryWithFixedCertificatesAsPool(1);
ApnsService apnsService = apnsServiceFactory.getApnsService();
doBasicAsserts(apnsService);
}
use of com.notnoop.apns.ApnsService in project camel by apache.
the class ApnsServiceFactoryTest method testApnsServiceFactoryAsPool0.
@Test(expected = IllegalArgumentException.class)
public void testApnsServiceFactoryAsPool0() throws Exception {
ApnsServiceFactory apnsServiceFactory = createApnsServiceFactoryWithFixedCertificatesAsPool(0);
ApnsService apnsService = apnsServiceFactory.getApnsService();
doBasicAsserts(apnsService);
}
Aggregations