Added auto-created empty unittest definitions.

This commit is contained in:
Griatch 2014-03-16 11:14:38 +01:00
parent 440afe6928
commit bb7b73b7c2
48 changed files with 3577 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import unittest
class TestGetAndMergeCmdsets(unittest.TestCase):
def test_get_and_merge_cmdsets(self):
# self.assertEqual(expected, get_and_merge_cmdsets(caller, session, player, obj, callertype, sessid))
assert True # TODO: implement your test here
class TestCmdhandler(unittest.TestCase):
def test_cmdhandler(self):
# self.assertEqual(expected, cmdhandler(called_by, raw_string, testing, callertype, sessid))
assert True # TODO: implement your test here
if __name__ == '__main__':
unittest.main()