From: sanket Date: Thu, 21 May 2020 14:12:34 +0000 (+0530) Subject: Update OCResourceRequestTest.cpp X-Git-Tag: accepted/tizen/6.5/unified/20211029.013650~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F30%2F236730%2F1;p=platform%2Fupstream%2Fiotivity.git Update OCResourceRequestTest.cpp Added samsung banner. used relevant resource uri name. (cherry-picked from 633bb95c6266c6990e4ec84d5fbd9e76d4956fc2) Change-Id: I332e70dd9c390d861a408c215add79680f9027aa Signed-off-by: sanket Signed-off-by: Sudipto --- diff --git a/resource/unittests/OCResourceRequestTest.cpp b/resource/unittests/OCResourceRequestTest.cpp index 2346394..dfabe99 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 #include #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);