Welcome,
Guest
|
TOPIC:
TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) 06 Mar 2009 11:42 #7543
What are action words and how can they be used?
Arul Raj HUAWEI TECHNOLOGIES CO.,LTD. This e-mail and its attachments contain confidential information from HUAWEI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it! Original Message From: active_ttcn3 : mts stf133 ttcn version 3 - active members only [This email address is being protected from spambots. You need JavaScript enabled to view it.] On Behalf Of TTCN3 automatic digest system Sent: Sunday, March 01, 2009 5:30 AM To: This email address is being protected from spambots. You need JavaScript enabled to view it. Subject: TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) There is 1 message totalling 48 lines in this issue. Topics of the day: 1. TriTimerId questions Date: Sat, 28 Feb 2009 14:08:22 +0100 From: Michael Sperber <This email address is being protected from spambots. You need JavaScript enabled to view it.> Subject: Re: TriTimerId questions Thanks for the explanation! Stephan Schulz <This email address is being protected from spambots. You need JavaScript enabled to view it.> writes: > [STS] No it is the same timer. Think of it as a character string > (which is one valid way of representing a timer identifier. The same > string refers to the same timer. So this means I can't use the name of the variable holding the timer, as seems to be the intention of the Java bindings, correct? > BTW - there is no objects in the C .. so your statement about > different objects is a bit confusing. Sure there are objects in C. (At least the ANSI C standard and my copy of K&R use this term.) I'll try to clarify: typedef struct { ... } BinaryString; BinaryString b1 = { blabla }; BinaryString b2 = { blabla }; There are two different objects b1 and b2. They may denote the same bit sequence, however: You're saying that, in that case, they also refer to the same timer. Correct? This is contrast to this situation: BinaryString b = { blabla }; BinaryString* b1 = &b; BinaryString* b2 = &b; ... where b1 and b2 point to the same object. -- Regards, Mike End of TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) *********************************************************** |
|
Please Log in to join the conversation. |
TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) 06 Mar 2009 12:54 #7544
|
Hello Arul,
Actions are used to coordinate the SUT by prompting the user to perform an action. For example if you are testing SIP, you may want to check if an invite message is correct. Thus, you execute your Test case that receives an invite message and before that statement you put an action saying something like "Sent an invite now". Hope this is clear. Cheers Bernard Stepien Original Message From: active_ttcn3 : mts stf133 ttcn version 3 - active members only [This email address is being protected from spambots. You need JavaScript enabled to view it.] On Behalf Of arulraj Sent: 6 mars 2009 06:42 To: This email address is being protected from spambots. You need JavaScript enabled to view it. Subject: Re: TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) What are action words and how can they be used? Arul Raj HUAWEI TECHNOLOGIES CO.,LTD. This e-mail and its attachments contain confidential information from HUAWEI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it! Original Message From: active_ttcn3 : mts stf133 ttcn version 3 - active members only [This email address is being protected from spambots. You need JavaScript enabled to view it.] On Behalf Of TTCN3 automatic digest system Sent: Sunday, March 01, 2009 5:30 AM To: This email address is being protected from spambots. You need JavaScript enabled to view it. Subject: TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) There is 1 message totalling 48 lines in this issue. Topics of the day: 1. TriTimerId questions Date: Sat, 28 Feb 2009 14:08:22 +0100 From: Michael Sperber <This email address is being protected from spambots. You need JavaScript enabled to view it.> Subject: Re: TriTimerId questions Thanks for the explanation! Stephan Schulz <This email address is being protected from spambots. You need JavaScript enabled to view it.> writes: > [STS] No it is the same timer. Think of it as a character string > (which is one valid way of representing a timer identifier. The same > string refers to the same timer. So this means I can't use the name of the variable holding the timer, as seems to be the intention of the Java bindings, correct? > BTW - there is no objects in the C .. so your statement about > different objects is a bit confusing. Sure there are objects in C. (At least the ANSI C standard and my copy of K&R use this term.) I'll try to clarify: typedef struct { ... } BinaryString; BinaryString b1 = { blabla }; BinaryString b2 = { blabla }; There are two different objects b1 and b2. They may denote the same bit sequence, however: You're saying that, in that case, they also refer to the same timer. Correct? This is contrast to this situation: BinaryString b = { blabla }; BinaryString* b1 = &b; BinaryString* b2 = &b; ... where b1 and b2 point to the same object. -- Regards, Mike End of TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) *********************************************************** |
Please Log in to join the conversation. |
TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) 06 Mar 2009 13:03 #7545
|
Dear Arul,
I can not make it more precise than the standard: Section 25: "In some testing situations some interface(s) to the SUT may be missing or unknown a priori (e.g. management interface) but it may be necessary that the SUT is stimulated to carry out certain actions (e.g. send a message to the test system). Also certain actions may be required from the test executing personnel (e.g. to change the environmental conditions of testing like the temperature, voltage of the power feeding, etc.)" var charstring myString:= " now." action("Send MyTemplate on lower PCO" & myString); How the test system implements this action is not specified in the standard. There might be a log message, a window could pop-up, an action could be trigger, etc. The implementation of the triSUTactionInformal operation in the System Adaptor (SA) will determine what will happen with this action. I hope this clarifies the meaning of the statement: "action" Best regards, Theo Theofanis Vassiliou-Gioles Testing Technologies IST GmbH Michaelkirchstraße 17/18 10179 Berlin, Germany Phone +49 30 726 19 190 Email This email address is being protected from spambots. You need JavaScript enabled to view it. Fax +49 30 726 19 19 20 Internet www.testingtech.com UPCOMING EVENTS March 9, ASQF Workshop Berlin, Testing Technologies Headquarters "Ausführbare Test-Modelle" www.testingtech.com/pressevents/event_calendar.php March 11, Free TTCN-3 Webinar TTCN-3 for Test Automation www.testingtech.com/services/ttcn3_webinar.php March 23-25, TTCN-3 Tutorial Accredited TTCN-3 Certification Course www.testingtech.com/services/ttcn3_tutorial.php Geschäftsführung: Theofanis Vassiliou-Gioles, Stephan Pietsch Handelsregister HRB 77805, Amtsgericht Charlottenburg Ust ID Nr.: DE 813 143 070 This e-mail may contain confidential and privileged material for the sole use of the intended recipient. Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender by reply e-mail and delete all copies of this message. arulraj schrieb: > What are action words and how can they be used? > > > Arul Raj > HUAWEI TECHNOLOGIES CO.,LTD. > > > This e-mail and its attachments contain confidential information from > HUAWEI, which > is intended only for the person or entity whose address is listed above. Any > use of the > information contained herein in any way (including, but not limited to, > total or partial > disclosure, reproduction, or dissemination) by persons other than the > intended > recipient(s) is prohibited. If you receive this e-mail in error, please > notify the sender by > phone or email immediately and delete it! > > > Original Message > From: active_ttcn3 : mts stf133 ttcn version 3 - active members only > [This email address is being protected from spambots. You need JavaScript enabled to view it.] On Behalf Of TTCN3 automatic digest system > Sent: Sunday, March 01, 2009 5:30 AM > To: This email address is being protected from spambots. You need JavaScript enabled to view it. > Subject: TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) > > There is 1 message totalling 48 lines in this issue. > > Topics of the day: > > 1. TriTimerId questions > > > > Date: Sat, 28 Feb 2009 14:08:22 +0100 > From: Michael Sperber <This email address is being protected from spambots. You need JavaScript enabled to view it.> > Subject: Re: TriTimerId questions > > Thanks for the explanation! > > Stephan Schulz <This email address is being protected from spambots. You need JavaScript enabled to view it.> writes: > >> [STS] No it is the same timer. Think of it as a character string >> (which is one valid way of representing a timer identifier. The same >> string refers to the same timer. > > So this means I can't use the name of the variable holding the timer, as > seems to be the intention of the Java bindings, correct? > >> BTW - there is no objects in the C .. so your statement about >> different objects is a bit confusing. > > Sure there are objects in C. (At least the ANSI C standard and my copy of > K&R use this term.) > > I'll try to clarify: > > typedef struct { ... } BinaryString; > > BinaryString b1 = { blabla }; > BinaryString b2 = { blabla }; > > There are two different objects b1 and b2. They may denote the same bit > sequence, however: You're saying that, in that case, they also refer to the > same timer. Correct? > > This is contrast to this situation: > > BinaryString b = { blabla }; > BinaryString* b1 = &b; > BinaryString* b2 = &b; > > ... where b1 and b2 point to the same object. > > -- > Regards, > Mike > > > > End of TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) > *********************************************************** > |
Please Log in to join the conversation. |
TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) 11 Mar 2009 11:42 #7546
|
Theofanis Vassiliou-Gioles wrote:
> Dear Arul, > > I can not make it more precise than the standard: > > Section 25: > "In some testing situations some interface(s) to the SUT may be > missing or unknown a priori (e.g. management > interface) but it may be necessary that the SUT is stimulated to carry > out certain actions (e.g. send a message to the test > system). Also certain actions may be required from the test executing > personnel (e.g. to change the environmental > conditions of testing like the temperature, voltage of the power > feeding, etc.)" > > var charstring myString:= " now." > action("Send MyTemplate on lower PCO" & myString); > > How the test system implements this action is not specified in the > standard. There might be a log message, a window could pop-up, an > action could be trigger, etc. > > The implementation of the triSUTactionInformal operation in the System > Adaptor (SA) will determine what will happen with this action. > > I hope this clarifies the meaning of the statement: "action" > > Best regards, > Theo > > > Theofanis Vassiliou-Gioles > > Testing Technologies IST GmbH > Michaelkirchstraße 17/18 > 10179 Berlin, Germany > > Phone +49 30 726 19 190 Email This email address is being protected from spambots. You need JavaScript enabled to view it. > Fax +49 30 726 19 19 20 Internet www.testingtech.com > > > > UPCOMING EVENTS > > > March 9, ASQF Workshop > Berlin, Testing Technologies Headquarters > "Ausführbare Test-Modelle" > www.testingtech.com/pressevents/event_calendar.php > > March 11, Free TTCN-3 Webinar > TTCN-3 for Test Automation > www.testingtech.com/services/ttcn3_webinar.php > > March 23-25, TTCN-3 Tutorial > Accredited TTCN-3 Certification Course > www.testingtech.com/services/ttcn3_tutorial.php > > Geschäftsführung: Theofanis Vassiliou-Gioles, Stephan Pietsch > Handelsregister HRB 77805, > Amtsgericht Charlottenburg Ust ID Nr.: DE 813 143 070 > > This e-mail may contain confidential and privileged material for > the sole use of the intended recipient. Any review, use, > distribution or disclosure by others is strictly prohibited. If you > are not the intended recipient (or authorized to receive for the > recipient), please contact the sender by reply e-mail and delete > all copies of this message. > > > arulraj schrieb: >> What are action words and how can they be used? >> >> Arul Raj >> HUAWEI TECHNOLOGIES CO.,LTD. >> >> >> >> This e-mail and its attachments contain confidential information from >> HUAWEI, which is intended only for the person or entity whose address >> is listed above. Any >> use of the information contained herein in any way (including, but >> not limited to, >> total or partial disclosure, reproduction, or dissemination) by >> persons other than the >> intended recipient(s) is prohibited. If you receive this e-mail in >> error, please >> notify the sender by phone or email immediately and delete it! >> >> >> Original Message >> From: active_ttcn3 : mts stf133 ttcn version 3 - active members only >> [This email address is being protected from spambots. You need JavaScript enabled to view it.] On Behalf Of TTCN3 automatic digest system >> Sent: Sunday, March 01, 2009 5:30 AM >> To: This email address is being protected from spambots. You need JavaScript enabled to view it. >> Subject: TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) >> >> There is 1 message totalling 48 lines in this issue. >> >> Topics of the day: >> >> 1. TriTimerId questions >> >> >> >> Date: Sat, 28 Feb 2009 14:08:22 +0100 >> From: Michael Sperber <This email address is being protected from spambots. You need JavaScript enabled to view it.> >> Subject: Re: TriTimerId questions >> >> Thanks for the explanation! >> >> Stephan Schulz <This email address is being protected from spambots. You need JavaScript enabled to view it.> writes: >> >>> [STS] No it is the same timer. Think of it as a character string >>> (which is one valid way of representing a timer identifier. The same >>> string refers to the same timer. >> >> So this means I can't use the name of the variable holding the timer, as >> seems to be the intention of the Java bindings, correct? >> >>> BTW - there is no objects in the C .. so your statement about >>> different objects is a bit confusing. >> >> Sure there are objects in C. (At least the ANSI C standard and my >> copy of >> K&R use this term.) >> >> I'll try to clarify: >> >> typedef struct { ... } BinaryString; >> >> BinaryString b1 = { blabla }; >> BinaryString b2 = { blabla }; >> >> There are two different objects b1 and b2. They may denote the same bit >> sequence, however: You're saying that, in that case, they also refer >> to the >> same timer. Correct? >> >> This is contrast to this situation: >> >> BinaryString b = { blabla }; >> BinaryString* b1 = &b; >> BinaryString* b2 = &b; >> >> ... where b1 and b2 point to the same object. >> >> -- >> Regards, >> Mike >> >> >> >> End of TTCN3 Digest - 24 Feb 2009 to 28 Feb 2009 (#2009-14) >> *********************************************************** >> HI All, can you any one tell me the which tool u are using for the learning of the TTCN-3...? Please help me to find out.. i have searched in net, all the tool are commercial or there is no tool available in the open source.. Please suggest me to learn TTCN-3. -- Regards, Parasuraman Kumarasami |
Please Log in to join the conversation. |