Loop over SafeTestsets

When using SafeTestsets, is any way to do something like the following?

for (name, file) in TESTS
    @safetestset name  begin include(file) end
end

This (and any variation I’ve tried) always gives me ArgumentError: Use @safetestset like the following: [...], presumably because the @safetest macro tries to operate on the symbol name instead of the string stored in name. Is there any way to evaluate name and file into a string before @safetestset handles them?