# File test/test_params.rb, line 301
    def test_load_bind_address
      @store['bind_address'] = 'localhost'
      @server_params.load(@properties)
      assert_equal(1, @params_call)
      assert((@params_names.include? 'bind_address'))
      assert_equal('localhost', @server_params.bind_address)
    end