def setup
super
@access_log_params = Rucy::AccessLogParams.new
@access_log_params_call = 0
@set_access_log_params_call = 0
@store['access_log_logging'] = true
@store['access_log_format'] = 'foo'
@store['access_logs'] = [
{ 'path' => 'foo.log', 'format' => 'foo' },
{ 'path' => 'bar.log', 'format' => 'bar' }
]
@modified_count_call = 0
@set_modified_count_call = 0
@set_modified_count_value = nil
@logging_call = 0
@set_logging_call = 0
@format_call = 0
@set_format_call = 0
@logfiles_call = 0
@del_logfile_at_call = 0
@del_logfile_at_pos = nil
loader = WPM::Loader.new('../control/AccessLog/AccessLog.rb')
@AccessLog = loader.const_get('AccessLog').new(self, { :control => self })
assert((@AccessLog.is_a? WPM::PageContext))
@AccessLog.init_context
end