-- Dummy unit tests
local p = require('Module:UnitTests/sandbox')
-- Fake test
function p:funcNotBegginningTest self:preprocess_equals('
Function 1', 'Function 1')end-- Regular tests
function p:test_funcBegginningTest self:preprocess_equals('
Function 2', 'Function 2')endfunction p:test_doomedToFail self:preprocess_equals('
Function 3', 'Function 4')end-- nowiki tests
function p:test_funcBegginningTest_nowiki self:preprocess_equals('
Function 2', 'Function 2',)endfunction p:test_doomedToFail_nowiki self:preprocess_equals('
Function 3', 'Function 4',)end-- combined tests
function p:test_funcBegginningTest_combined self:preprocess_equals('', '
Function 2',)endfunction p:test_doomedToFail_combined self:preprocess_equals('
Function 3', 'Function 4',)end-- finish
return p