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

      # for WPM::Driver class
      @driver_call = 0
      @redirect_call = 0
      @redirect_last_page_name = nil
      @redirect_last_query_params = nil

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

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