Attention is currently required from: jolly.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33150 )
Change subject: Added BSC tests for terminating voice group calls ......................................................................
Patch Set 3:
(2 comments)
File bsc/BSC_Tests_ASCI.ttcn:
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33150/comment/bb9d26ba_a89f7... PS3, Line 46: type component RSL_DchanHdlr This component type is already defined in `library/RSL_Emulation.ttcn`, which is imported by this module. Why duplicating it here?
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33150/comment/2315fa37_9098e... PS3, Line 59: integer cr, integer sf, integer af, integer prio, integer ci Why not defining template parameters as `BITn`?
``` template (value) DescriptiveGroupOrBroadcastCallReference_V ts_BSSMAP_IE_GroupCallRef(integer cr, BIT1 sf := '1'B, BIT1 af := '0'B, BIT3 prio := '000'B, BIT4 ci := '0000'B) := { ... } ```
I understand the problem with `cr`: there is no `BIT27` and passing long bitstrings might be inconvenient, but other params can be `BITn` and have default values assigned.