// this test always expects output since when using a LogService, the log
// level property is ignored
public void testLogWithLogService()
{
LogService logService = new MockLogService();
ConfigurationManager configMgr = createConfigurationManager( logService );
setLogLevel( configMgr, LogService.LOG_WARNING );
assertLog( configMgr, LogService.LOG_DEBUG, "Debug Test Message", null );
assertLog( configMgr, LogService.LOG_INFO, "Info Test Message", null );