aboutsummaryrefslogtreecommitdiffstats
path: root/stp
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-11-15 16:36:48 +0100
committerpespin <pespin@sysmocom.de>2019-11-15 18:49:09 +0000
commit0361193a555b288c42a7a599ab5692fd5ddd7397 (patch)
tree5fefa9805eee63a895a0727951add48f61c1f912 /stp
parent61122c8f35991d75360d57768b7e1dcc07f4d3c2 (diff)
Update README.md of several TTCN3 test suites
Some stuff was wrong and some was missing after new features being implemented in tests over time. Change-Id: I7a279592a68ffc76408a8e728e76151534265cc0
Diffstat (limited to 'stp')
-rw-r--r--stp/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/stp/README.md b/stp/README.md
new file mode 100644
index 00000000..20a42b52
--- /dev/null
+++ b/stp/README.md
@@ -0,0 +1,18 @@
+# STP_Tests.ttcn
+
+* external interfaces
+ * M3UA/SCTP (can emulate both client and server side)
+ * IPA (can emulate both client and server side)
+ * VTY
+
+{% dot sip_tests.svg
+digraph G {
+ rankdir=LR;
+ STP [label="IUT\nosmo-stp",shape="box"];
+ ATS [label="ATS\nSTP_Tests.ttcn"];
+
+ ATS -> STP [label="M3UA", dir="both"];
+ ATS -> STP [label="IPA", dir="both"];
+ ATS -> STP [label="VTY"];
+}
+%}