Last change
on this file since 22 was
22,
checked in by rings, 14 years ago
|
|
-
Property svn:executable set to
*
|
File size:
768 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * @author STF370
|
---|
3 | * @version $Id$
|
---|
4 | * @desc SIP Sanity Testcases
|
---|
5 | */
|
---|
6 |
|
---|
7 | module Sanity_Testcases {
|
---|
8 |
|
---|
9 | import from TestSystem all;
|
---|
10 | import from LibSip_SIPTypesAndValues all;
|
---|
11 | import from Sanity_Templates all;
|
---|
12 |
|
---|
13 | testcase TC_SANITY_0001() runs on SipSimu system SipSimu {
|
---|
14 |
|
---|
15 | // Preamble
|
---|
16 | connect(self:sipPort, self:sipPort);
|
---|
17 | //map
|
---|
18 |
|
---|
19 | // Test Body
|
---|
20 | sipPort.send(m_standardInviteRequest);
|
---|
21 | sipPort.receive(m_standardInviteRequest);
|
---|
22 |
|
---|
23 | }
|
---|
24 |
|
---|
25 | testcase TC_SANITY_0002() runs on SipSimu system SipSimu {
|
---|
26 |
|
---|
27 | // Preamble
|
---|
28 | connect(self:sipPort, self:sipPort);
|
---|
29 |
|
---|
30 | // Test Body
|
---|
31 | sipPort.send(m_standardRegisterRequest);
|
---|
32 | sipPort.receive(m_standardRegisterRequest);
|
---|
33 |
|
---|
34 | }
|
---|
35 | } // end module Sanity_Testcases |
---|
Note: See
TracBrowser
for help on using the repository browser.