mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
15 lines
240 B
Lua
15 lines
240 B
Lua
|
|
local test = {
|
|
"testConsole.lua",
|
|
"testFile.lua",
|
|
"testMail.lua",
|
|
"testSocket.lua",
|
|
"testSQL.lua",
|
|
}
|
|
|
|
print ("Start of Logging tests")
|
|
table.foreachi (test, function (i, filename)
|
|
dofile(filename)
|
|
end)
|
|
print ("End of Logging tests")
|