public void testGoodAppStartupInfoLogOutput() throws Exception {
WinkLogHandler.turnLoggingCaptureOn(WinkLogHandler.LEVEL.INFO);
MockAppValidator mockAppValidator = new MockAppValidator();
ResourceRegistry mockResourceRegistry =
new ResourceRegistry(new LifecycleManagersRegistry(), mockAppValidator);
ProvidersRegistry mockProvidersRegistry =
new ProvidersRegistry(new LifecycleManagersRegistry(), mockAppValidator);
ApplicationProcessor appProcessor =
new ApplicationProcessor(new MyApp(), mockResourceRegistry, mockProvidersRegistry, false);
appProcessor.process();
WinkLogHandler.turnLoggingCaptureOff();
List<LogRecord> records = WinkLogHandler.getRecords();