first release v0.1

This commit is contained in:
2024-10-07 16:28:10 +02:00
commit 03570a30e6
28 changed files with 2124 additions and 0 deletions

@ -0,0 +1,24 @@
# lassen wir weg
import unittest
from src.database_connector.database_connector import Neo4jConnection
class TestNeo4jConnection(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
def test_success(self):
# arrange
uri = "bolt://localhost:7687"
username = "testuser"
password = "wrongpw"
# act
obj = Neo4jConnection(uri, username, password)
# assert
# self.assertEqual(, ) # testen ob exception rauskommt
if __name__ == '__main__':
unittest.main()