aboutsummaryrefslogtreecommitdiffstats
path: root/Tests.st
diff options
context:
space:
mode:
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 6269c3a..6d336da 100644
--- a/Tests.st
+++ b/Tests.st
@@ -440,6 +440,13 @@ TestCase subclass: GSM48Test [
dec := GSM48MSG decode: inp readStream.
self assert: dec toMessage asByteArray = inp.
]
+
+ testCipheringModeComplete [
+ | dec inp |
+ inp := #(16r06 16r32) asByteArray.
+ dec := GSM48MSG decode: inp readStream.
+ self assert: dec toMessage asByteArray = inp.
+ ]
]
SCCPHandler subclass: TestSCCPHandler [