aboutsummaryrefslogtreecommitdiffstats
path: root/hlr
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-06-14 18:55:33 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-06-14 18:55:36 +0200
commita4cecf5af7ee37e3b17e22f609987abc702a6b2d (patch)
treeeff02c5787ab42fc768264f2209520a68268792a /hlr
parent99f3ca0c4852a5f6dd0c40ac756d290cc036b6f5 (diff)
Add README.md file for several suites
Content grabbed from [1] and converted to markdown as it's more probable to have it displayed correctly on popular git repo hosting platforms. Syntax for embedded graphviz taken from [2]. [1] http://git.gnumonks.org/laforge-slides/plain/2018/osmodevcon2018-ttcn3_test_suites/osmodevcon2018-ttcn3_test_suites.adoc [2] https://github.com/stlehmann/markdown-graphviz Change-Id: I9aad03e605569e9613665a7585d60bf308bcb54f
Diffstat (limited to 'hlr')
-rw-r--r--hlr/README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/hlr/README.md b/hlr/README.md
new file mode 100644
index 00000000..a08c03f5
--- /dev/null
+++ b/hlr/README.md
@@ -0,0 +1,16 @@
+# HLR_Tests.ttcn
+
+* external interfaces
+ * GSUP (emulates VLR/SGSN side)
+ * VTY
+
+{% dot hlr_tests.svg
+digraph G {
+ rankdir=LR;
+ HLR [label="IUT\nosmo-hlr",shape="box"];
+ ATS [label="ATS\nHLR_Tests.ttcn"];
+
+ ATS -> HLR [label="GSUP"];
+ ATS -> HLR [label="VTY"];
+}
+%}