def setup
super
@driver_call = 0
@redirect_call = 0
@redirect_last_page_name = nil
@redirect_last_query_params = nil
@store['logfiles'] = [
{ 'path' => 'server.log', 'logging_level' => 'notice' },
{ 'path' => 'access.log', 'logging_level' => 'info' }
]
@logging_params = Rucy::LoggingParams.new
@logging_params_call = 0
@set_logging_params_call = 0
@modified_count_call = 0
@set_modified_count_call = 0
@set_modified_count_value = nil
@add_logfile_call = 0
@logfiles_call = 0
loader = WPM::Loader.new('../control/AddLogFile/AddLogFile.rb')
@AddLogFile = loader.const_get('AddLogFile').new(self, { :control => self })
assert((@AddLogFile.is_a? WPM::PageContext))
@AddLogFile.init_context
end