all-selenium-tests.ss
(module all-selenium-tests mzscheme
  
  (require (planet "test.ss" ("schematics" "schemeunit.plt" 2))
           (file "support-test.ss")
           (file "selenium-test.ss"))
  (provide all-selenium-tests)
  
  (define all-selenium-tests
    (test-suite 
     "all-selenium-tests"

     support-tests
     selenium-tests
     ))
  )