test-configuration.ss
(module test-configuration mzscheme
  
  (provide test-idcheck-url
           test-idcheck-redirect-url
           test-base-url
           test-idcheck-cookie-domain)
  
  ;; ***** ALTER THESE VALUES TO CONFIGURE YOUR TEST ENVIRONMENT *****
  (define test-idcheck-url           #f) ; example: "http://idcheck.qmul.ac.uk/idcheck"
  (define test-idcheck-redirect-url  #f) ; example: "https://idcheck.qmul.ac.uk/idcheck"
  (define test-base-url              #f) ; example: "http://www2.sbcs.qmul.ac.uk:5678"
  (define test-idcheck-cookie-domain #f) ; example: ".qmul.ac.uk"
  ;; *****************************************************************
  
  )