Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LibIts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TTCN-3 Libraries
LibIts
Commits
ddeac377
Commit
ddeac377
authored
14 years ago
by
berge
Browse files
Options
Downloads
Patches
Plain Diff
Fixed naming conventions and coding style issues
parent
c10c5dcf
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ttcn/CAM/LibItsCam_Functions.ttcn
+4
-4
4 additions, 4 deletions
ttcn/CAM/LibItsCam_Functions.ttcn
ttcn/CAM/LibItsCam_Templates.ttcn
+2
-2
2 additions, 2 deletions
ttcn/CAM/LibItsCam_Templates.ttcn
with
6 additions
and
6 deletions
ttcn/CAM/LibItsCam_Functions.ttcn
+
4
−
4
View file @
ddeac377
...
...
@@ -22,15 +22,15 @@ module LibItsCam_Functions {
altstep
a_basicDefault
()
runs
on
ItsFa
{
[]
camPort
.
receive
(
mw_camInd
(
mw_camMsg_any
)){
setverdict
(
fail
,
"***
*
a_basicDefault: CAM message received in default
*
***"
);
setverdict
(
fail
,
"*** a_basicDefault:
FAIL:
CAM message received in default ***"
);
stop
;
}
[]
camPort
.
receive
{
setverdict
(
fail
,
"***
*
a_basicDefault: event received on CAM port in default
*
***"
);
[]
camPort
.
receive
{
setverdict
(
fail
,
"*** a_basicDefault:
FAIL:
event received on CAM port in default ***"
);
stop
;
}
[]
any
timer
.
timeout
{
setverdict
(
fail
,
"***
*
a_basicDefault:
a
timer expired in default
*
***"
);
setverdict
(
fail
,
"*** a_basicDefault:
FAIL: a
timer expired in default ***"
);
stop
;
}
}
//end altstep a_basicDefault
...
...
This diff is collapsed.
Click to expand it.
ttcn/CAM/LibItsCam_Templates.ttcn
+
2
−
2
View file @
ddeac377
...
...
@@ -12,9 +12,9 @@ module LibItsCam_Templates {
import
from
ASNAUX
all
;
template
CamInd
mw_camInd
(
in
template
CoopAwareness
camMsg
)
:=
{
msgIn
:=
camMsg
};
template
CamInd
mw_camInd
(
in
template
CoopAwareness
p_
camMsg
)
:=
{
msgIn
:=
p_
camMsg
};
template
CamReq
m
w
_camReq
(
in
template
CoopAwareness
camMsg
)
:=
{
msgOut
:=
camMsg
};
template
CamReq
m_camReq
(
in
template
CoopAwareness
p_
camMsg
)
:=
{
msgOut
:=
p_
camMsg
};
template
CoopAwareness
mw_camMsg_any
:=
{
protocolVersion
:=?
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment