/**
* <p>Tests the {@link CustomRemoteApplicationContextProducer#createApplicationContext(TestClass)} method.</p>
*/
@Test
public void testCreateApplicationContextDefault() {
TestClass testClass = new TestClass(CustomApplicationContextClass.class);
TestScopeApplicationContext result = instance.createApplicationContext(testClass);
assertNotNull("The result was null.", result);
assertTrue("The application context should be marked as closable.", result.isClosable());