aboutsummaryrefslogtreecommitdiffstats
path: root/Tests.st
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-12-25 10:11:56 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-12-25 10:11:56 +0100
commit6cdfbc77fbd381dc2e5bf7dd77022d58818f4b33 (patch)
tree864405906f04d0ae75c6499bdb1890395fc94c19 /Tests.st
parent83b0dd0e743154baa1cf25572a21a77197ef4491 (diff)
gsm: Add the handover command with the usual stubs for the IEs
Diffstat (limited to 'Tests.st')
-rw-r--r--Tests.st7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests.st b/Tests.st
index 147d3fc..b0b8669 100644
--- a/Tests.st
+++ b/Tests.st
@@ -429,6 +429,13 @@ TestCase subclass: GSM48Test [
dec := GSM48MSG decode: inp readStream.
self assert: dec toMessage asByteArray = inp.
]
+
+ testHandoverCommand [
+ | dec inp |
+ inp := #(16r06 16r2B 16rFF 16r29 16r0B 16rE3 16r29 16r00 16r00) asByteArray.
+ dec := GSM48MSG decode: inp readStream.
+ self assert: dec toMessage asByteArray = inp.
+ ]
]
SCCPHandler subclass: TestSCCPHandler [