public void shouldMissApplicationAfterRefresh() throws OpenShiftException, FileNotFoundException, IOException {
// pre-condition
IDomain domain = DomainTestUtils.ensureHasDomain(user);
IApplication application = ApplicationTestUtils.getOrCreateApplication(domain);
assertThat(application).isNotNull();
IUser otherUser = new TestConnectionBuilder().defaultCredentials().disableSSLCertificateChecks().create().getUser();
IDomain otherDomain = otherUser.getDomain(domain.getId());
assertNotNull(otherDomain);
IApplication otherDomainApplication = otherDomain.getApplicationByName(application.getName());
assertThat(otherDomainApplication).isNotNull();
// operation