# File test/test_AccessLog.rb, line 13
    def setup
      super

      # for Rucy::Control class
      @access_log_params = Rucy::AccessLogParams.new
      @access_log_params_call = 0
      @set_access_log_params_call = 0

      # for Rucy::AccessLogParams class
      @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

      # setup WPM::PageContext class
      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