macro-test.ss
(module macro-test mzscheme
  
  (require (planet "test.ss" ("schematics" "schemeunit.plt" 2)))
  (require "benchmark.ss")
  
  (provide macro-tests)
  
  (define macro-tests
    (test-suite
     "All tests for macro"

     (test-case
      "this-expression-benchmark-log-file works when etc.ss not required"
      (check-pred path? (this-expression-benchmark-log-file)))
     ))
  )