TestAbstractProcess   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A test___init__() 0 4 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