for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"""Module for testing."""
import unittest
from grortir.main.model.core.AbstractProcess import AbstractProcess
class TestAbstractProcess(unittest.TestCase):
"""Class for testing."""
def test___init__(self):
"""Method which check constructor."""
tested_object = AbstractProcess()
self.assertIsNotNone(tested_object)