# File test/test_ControlPanel.rb, line 300
    def test_bind_address
      assert_equal(nil, @ControlPanel.bind_address)
      assert_equal(1, @bind_address_call)
      @ControlPanel.bind_address = 'localhost'
      assert_equal(1, @set_bind_address_call)
      assert_equal('localhost', @ControlPanel.bind_address)
      assert_equal(2, @bind_address_call)
      @ControlPanel.write_server_params
      assert_equal(1, @set_server_params_call)
      assert_equal('localhost', @store['bind_address'])
    end