public void testEntityTimeManager() throws XmppException {
MockServer mockServer = new MockServer();
TestXmppSession connection1 = new TestXmppSession(ROMEO, mockServer);
new TestXmppSession(JULIET, mockServer);
EntityTimeManager entityTimeManager = connection1.getExtensionManager(EntityTimeManager.class);
EntityTime entityTime = entityTimeManager.getEntityTime(JULIET);
Assert.assertNotNull(entityTime);
Assert.assertNotNull(entityTime.getDate());
Assert.assertNotNull(entityTime.getTimezone());
}