initial commit with barebones project structure
This commit is contained in:
16
tests/testPatterns.py
Normal file
16
tests/testPatterns.py
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
import unittest
|
||||
|
||||
from patterns.FileEventPattern import FileEventPattern
|
||||
|
||||
|
||||
class CorrectnessTests(unittest.TestCase):
|
||||
def setUp(self) -> None:
|
||||
return super().setUp()
|
||||
|
||||
def tearDown(self) -> None:
|
||||
return super().tearDown()
|
||||
|
||||
def testFileEventPattern(self):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user