mirror of
https://github.com/botlabsDev/npkpy.git
synced 2025-12-10 06:54:37 +01:00
12 lines
336 B
Python
12 lines
336 B
Python
import unittest
|
|
|
|
from npkpy.npk.cnt_flag_c import CntFlagC
|
|
from tests.constants import get_dummy_basic_cnt
|
|
|
|
|
|
class Test_cntFlagC(unittest.TestCase):
|
|
def setUp(self) -> None:
|
|
self.cnt = CntFlagC(get_dummy_basic_cnt(cnt_id=17), offset_in_pck=0)
|
|
|
|
def test_validateCntId(self):
|
|
self.assertEqual(17, self.cnt.cnt_id)
|