Completed
Push — master ( 8c5af0...53749f )
by Wojtek
8s
created

TestAbstractProcess.test___init__()   A

Complexity

Conditions 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 4
rs 10
cc 1
1
"""Module for testing."""
2
3
from unittest import TestCase
4
5
from grortir.main.model.core.abstract_process import AbstractProcess
6
7
8
class TestAbstractProcess(TestCase):
9
    """Class for testing."""
10
    def test___init__(self):
11
        """Method which check constructor."""
12
        tested_object = AbstractProcess()
13
        self.assertIsNotNone(tested_object)
14