diff options
author | sanket <san.bansal@samsung.com> | 2020-05-21 19:42:34 +0530 |
---|---|---|
committer | Sudipto <sudipto.bal@samsung.com> | 2020-06-19 22:33:59 +0530 |
commit | 1d14c1f40045a5c5341822a8365911c07e108d37 (patch) | |
tree | 2093c5cacaad107965ccbc7a0e2c502d3b690cb1 | |
parent | 1fc0b20fcef9bdb93e0ac1eeb1f794bb359e4779 (diff) | |
download | iotivity-1d14c1f40045a5c5341822a8365911c07e108d37.tar.gz iotivity-1d14c1f40045a5c5341822a8365911c07e108d37.tar.bz2 iotivity-1d14c1f40045a5c5341822a8365911c07e108d37.zip |
Update OCResourceRequestTest.cpp
Added samsung banner.
used relevant resource uri name.
(cherry-picked from 633bb95c6266c6990e4ec84d5fbd9e76d4956fc2)
Change-Id: I332e70dd9c390d861a408c215add79680f9027aa
Signed-off-by: sanket <san.bansal@samsung.com>
Signed-off-by: Sudipto <sudipto.bal@samsung.com>
-rw-r--r-- | resource/unittests/OCResourceRequestTest.cpp | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/resource/unittests/OCResourceRequestTest.cpp b/resource/unittests/OCResourceRequestTest.cpp index 2346394c2..dfabe991a 100644 --- a/resource/unittests/OCResourceRequestTest.cpp +++ b/resource/unittests/OCResourceRequestTest.cpp @@ -1,3 +1,23 @@ +//****************************************************************** +// +// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved. +// +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= + #include <OCResourceRequest.h> #include <bits/stdc++.h> #include "ocpayload.h" @@ -9,7 +29,7 @@ namespace OCResourceReuestTest { TEST(ConstructResourceRequestTest, ConstructSetPayloadTest) { OCResourceRequest obj; - obj.setResourceUri("/x/y"); + obj.setResourceUri("/a/light"); EXPECT_EQ(obj.getRequestType(), ""); EXPECT_EQ(obj.getRequestHandle() , (OCRequestHandle)0); @@ -17,7 +37,7 @@ namespace OCResourceReuestTest { EXPECT_TRUE(obj.getResourceHandle() == nullptr); EXPECT_TRUE(obj.getResourceRepresentation() == OCRepresentation()); - EXPECT_EQ(obj.getResourceUri(), "/x/y"); + EXPECT_EQ(obj.getResourceUri(), "/a/light"); EXPECT_TRUE(obj.getHeaderOptions().empty()); EXPECT_EQ(obj.getMessageID(), (int16_t)0); |