iotivity 0.9.0
[platform/upstream/iotivity.git] / resource / csdk / occoap / test / occoaptests.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21
22 //=============================================================================
23 // Includes
24 //=============================================================================
25 /*extern "C" {
26     #include "occoap.h"
27     #include "logger.h"
28 }*/
29
30 #include "gtest/gtest.h"
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #include <errno.h>
34 #include <fcntl.h>
35 #include <unistd.h>
36 #include <stdlib.h>
37 #include <stdio.h>
38 #include <string.h>
39
40 #include <iostream>
41 #include <stdint.h>
42 using namespace std;
43
44 //=============================================================================
45 // Private Variables
46 //=============================================================================
47 static const char TAG[] = "TestHarness";
48
49 //=============================================================================
50 // Callback function
51 //=============================================================================
52 /*void discoverServicesAsync(const char *Url) {
53     OC_LOG_V(INFO, TAG, "Entering discoverServicesAsync.  URL = %s", Url);
54 }*/
55
56 //=============================================================================
57 // Tests
58 //=============================================================================
59 TEST(OCCoapTest, General) {
60     EXPECT_EQ(0, 0);
61 }