proxy/all-proxy-tests.ss
(module all-proxy-tests mzscheme
  
  (require
   (planet "test.ss" ("schematics" "schemeunit.plt" 2))
   (file "proxy-test.ss")
   (file "io-test.ss")
   (file "http-test.ss"))
  
  (provide all-proxy-tests)
  
  (define all-proxy-tests
    (test-suite 
     "all-proxy-tests"

     proxy-tests
     io-tests
     http-tests
     ))
  )