Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
ATS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
TST
ATS
Commits
cc2727d9
Commit
cc2727d9
authored
7 years ago
by
Miguel Angel Reina Ortega
Browse files
Options
Downloads
Patches
Plain Diff
TC_DELETE_AE deleted - not needed any more
Signed-off-by:
reinaortega
<
miguelangel.reinaortega@etsi.org
>
parent
3b87050c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!25
Ae fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
OneM2M_Testcases.ttcn
+1
-34
1 addition, 34 deletions
OneM2M_Testcases.ttcn
with
1 addition
and
34 deletions
OneM2M_Testcases.ttcn
+
1
−
34
View file @
cc2727d9
...
...
@@ -7,7 +7,7 @@
*
* @author oneM2M
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Testcases.ttcn $
* $Id: OneM2M_Testcases.ttcn 2
79
2017-05-18 10:
29:12
Z reinaortega $
* $Id: OneM2M_Testcases.ttcn 2
80
2017-05-18 10:
30:30
Z reinaortega $
* @desc Module containing test cases for oneM2M
*
*/
...
...
@@ -31,39 +31,6 @@ module OneM2M_Testcases {
group helpingTestCases {//These are not part of the test suite, just for verification purposes
testcase TC_DELETE_AE() runs on CseTester system CseSystem {
timer t_ac := 5.0;
map(self:mcaPort, system:mcaPort);
mcaPort.send(m_request(m_deleteRequest(PX_URI_CSE & PX_CSE_NAME & "/" & PX_RESOURCE_TO_BE_DELETED)));
t_ac.start;
alt {
[] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) {
t_ac.stop;
log("Postamble: Resource deleted");
setverdict(pass);
}
[] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) {
t_ac.stop;
log("Postamble: Error while deleting resource");
setverdict(fail);
}
[] mcaPort.receive {
t_ac.stop;
log("Postamble: Unexpected message received");
setverdict(inconc);
}
[] t_ac.timeout {
log("Postamble: No answer while deleting resource");
setverdict(inconc);
}
}
unmap(self:mcaPort, system:mcaPort);
stop;
}
testcase TC_DELETE_RESOURCES() runs on CseTester system CseSystem {
timer t_ac := 5.0;
...
...
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