unittest.TestSuite class has this property, and tests can be
-- added with add_test. Example:
--
+--
-- local data = {"foo", "bar", "baz"}
-- test_suite = unittest.TestSuite:new()
-- test_suite:add_test(equal(data[2], "bar"), "data[2] should equal 'bar'")
+--
--
-- The library is driven by the unittest NSE script.
--