1
0
mirror of https://github.com/TheGreyDiamond/Enlight.git synced 2025-12-16 15:00:46 +01:00

Added unittesting

This commit is contained in:
TheGreyDiamond
2020-09-17 21:32:10 +02:00
parent 51cce6ea73
commit d63a1cb1b2
3 changed files with 10 additions and 0 deletions

View File

@@ -266,3 +266,4 @@ def testOnlyServer():
if __name__ == "__main__":
testOnlyServer()

View File

@@ -0,0 +1,9 @@
import unittest
import code.session
class NamesTestCase(unittest.TestCase):
def test_first_last_name(self):
testSession = Code.session.enlightSession("TestSession", role = Code.session.HOST)
testSession.initConnection()
self.assertEqual(testSession.getSessionMembers(), [])