51Testing软件测试论坛

标题: TTCN-3的Hello World程序 [打印本页]

作者: 默默巫    时间: 2009-4-8 13:41
标题: TTCN-3的Hello World程序
TTCN-3的Hello World程序
module HelloWorld{
type port PCOType message {
inout charstring;
}
type component MTCType {
port PCOType MyPCO;
}
testcase Hello () runs on MTCType {
MyPCO.start;
MyPCO.send ( "Hello, world!” );
MyPCO.stop;
setverdict ( pass );
}
control {
execute ( Hello() );
}
}
作者: x1j2l3    时间: 2009-4-16 14:56
这个怎样编译?
作者: 默默巫    时间: 2009-4-22 18:27
标题: TTCN-3的Hello World程序
module HelloWorld{
type port PCOType message {
inout charstring;
}
type component MTCType {
port PCOType MyPCO;
}
testcase Hello () runs on MTCType {
MyPCO.start;
MyPCO.send ( "Hello, world!” );
MyPCO.stop;
setverdict ( pass );
}
control {
execute ( Hello() );
}
}
作者: whistler.j    时间: 2009-6-10 18:27
这是啥语言啊?
作者: douxiance    时间: 2009-6-30 22:08
标题: TTCN3的Hello Word
module mHello
{
      type component mtcHello{}
      testcase tcHello()runs on mtcHello
      {
           log("Hello World!");
      }
}
作者: douxiance    时间: 2009-6-30 22:09
标题: TTCN3的Hello Word(2)
module mHello
{
      control
      {
           log("Hello World!");
      }
}
作者: smuuupl    时间: 2010-10-26 22:10
module HelloWorld{
type port PCOType message {
inout charstring;
}
type component MTCType {
port PCOType MyPCO;
}
testcase Hello () runs on MTCType {
/*
MyPCO.start;
MyPCO.send ( "Hello, world!” );
MyPCO.stop;
setverdict ( pass );*/
//直接Log()就可以了,不用这么麻烦吧
log("Hello, world!");
}
control {
execute ( Hello() );
}
}
作者: smuuupl    时间: 2010-10-26 22:12
搂主最好说明在什么编译工具下编译的,TTCN本身没有工具,它只是一种标准!
作者: ddeyo    时间: 2010-12-5 22:40
module HelloWorld{
type port PCOType message {
inout charstring;
}
type component MTCType {
port PCOType MyPCO;
}
testcase Hello () runs on MTCType {
/*
MyPCO.start;
MyPCO.send ( "Hello, world!” );
MyPCO.stop;
setverdict ( pass );*/
//直接Log()就可以了,不用这么麻烦吧
log("Hello, world!");
}
control {
execute ( Hello() );
}
}

也许两个输出的东东是一样的,
但是实现过程意义不一样吧?
我执行过调‘MTCType’这个步骤,但是端口连接不了,求指点,
作者: ddeyo    时间: 2010-12-5 22:46
testcase Hello () runs on MTCType {
MyPCO.start;
MyPCO.send ( "Hello, world!” );
MyPCO.stop;
setverdict ( pass );
}
control {
execute ( Hello() );
}

为什么好多例子中都有这个呢,为什么,实现的什么?
作者: Kity_88    时间: 2012-2-16 15:54
我想要一个已经写好的RTSP的testport,自己写这个要花很多时间啊。
作者: whmqxx    时间: 2012-5-19 20:04
搂主最好说明在什么编译工具下编译的,




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2