From a4cecf5af7ee37e3b17e22f609987abc702a6b2d Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 14 Jun 2018 18:55:33 +0200 Subject: 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 --- sip/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sip/README.md (limited to 'sip') diff --git a/sip/README.md b/sip/README.md new file mode 100644 index 00000000..ac880dd4 --- /dev/null +++ b/sip/README.md @@ -0,0 +1,18 @@ +* SIP_Tests.ttcn + +* external interfaces + * MNCC (emulates MSC side) + * SIP (emulates SIP switch) + * VTY + +{% dot sip_tests.svg +digraph G { + rankdir=LR; + SIP [label="SIP\nosmo-sip-connector",shape="box"]; + ATS [label="ATS\nSIP_Tests.ttcn"]; + + ATS -> SIP [label="MNCC"]; + ATS -> SIP [label="SIP"]; + ATS -> SIP [label="VTY"]; +} +%} -- cgit v1.2.3