mirror of
https://github.com/Insality/druid
synced 2025-06-27 10:27:48 +02:00
17 lines
301 B
Plaintext
17 lines
301 B
Plaintext
local deftest = require "deftest.deftest"
|
|
|
|
local tests = {
|
|
-- Test list
|
|
}
|
|
|
|
|
|
function init(self)
|
|
print('[DefTest]: Init of DefTest')
|
|
for i = 1, #tests do
|
|
deftest.add(tests[i])
|
|
end
|
|
|
|
local is_report = (sys.get_config("test.report") == "1")
|
|
deftest.run({ coverage = { enabled = is_report } })
|
|
end
|