Added auto-created empty unittest definitions.
This commit is contained in:
parent
440afe6928
commit
bb7b73b7c2
48 changed files with 3577 additions and 0 deletions
24
src/tests/test_utils_search.py
Normal file
24
src/tests/test_utils_search.py
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import unittest
|
||||
|
||||
class TestSearchObjectTag(unittest.TestCase):
|
||||
def test_search_object_tag(self):
|
||||
# self.assertEqual(expected, search_object_tag(key, category))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
class TestSearchPlayerTag(unittest.TestCase):
|
||||
def test_search_player_tag(self):
|
||||
# self.assertEqual(expected, search_player_tag(key, category))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
class TestSearchScriptTag(unittest.TestCase):
|
||||
def test_search_script_tag(self):
|
||||
# self.assertEqual(expected, search_script_tag(key, category))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
class TestSearchChannelTag(unittest.TestCase):
|
||||
def test_search_channel_tag(self):
|
||||
# self.assertEqual(expected, search_channel_tag(key, category))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue