Update OCResourceRequestTest.cpp 30/236730/1
authorsanket <san.bansal@samsung.com>
Thu, 21 May 2020 14:12:34 +0000 (19:42 +0530)
committerSudipto <sudipto.bal@samsung.com>
Fri, 19 Jun 2020 17:03:59 +0000 (22:33 +0530)
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>
resource/unittests/OCResourceRequestTest.cpp

index 2346394..dfabe99 100644 (file)
@@ -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);