Revert "License conversion from Flora to Apache 2.0"
[platform/core/uifw/dali-core.git] / automated-tests / src / dali-internal / utc-Dali-Internal-Handles.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 #include <iostream>
18
19 #include <stdlib.h>
20 #include <dali/dali.h>
21 #include <dali/integration-api/glyph-set.h>
22
23 #include <dali-test-suite-utils.h>
24
25 // Internal headers are allowed here
26
27
28 using namespace Dali;
29
30 void utc_dali_internal_handles_startup()
31 {
32   test_return_value = TET_UNDEF;
33 }
34
35 void utc_dali_internal_handles_cleanup()
36 {
37   test_return_value = TET_PASS;
38 }
39
40
41 int UtcDaliCameraActorConstructorRefObject(void)
42 {
43   TestApplication application;
44   tet_infoline("Testing Dali::CameraActor::CameraActor(Internal::CameraActor*)");
45
46   CameraActor actor(NULL);
47
48   DALI_TEST_CHECK(!actor);
49   END_TEST;
50 }
51
52 int UtcDaliImageActorConstructorRefObject(void)
53 {
54   TestApplication application;
55   tet_infoline("Testing Dali::ImageActor::ImageActor(Internal::ImageActor*)");
56
57   ImageActor actor(NULL);
58
59   DALI_TEST_CHECK(!actor);
60   END_TEST;
61 }
62
63 int UtcDaliLightActorConstructorRefObject(void)
64 {
65   TestApplication application;
66   tet_infoline("Testing Dali::LightActor::LightActor(Internal::LightActor*) UtcDaliLightActorConstructorRefObject");
67
68   LightActor actor(NULL);
69
70   DALI_TEST_CHECK(!actor);
71   END_TEST;
72 }
73
74 int UtcDaliMeshActorConstructorRefObject(void)
75 {
76   TestApplication application;
77   tet_infoline("Testing Dali::MeshActor::MeshActor(Internal::MeshActor*)");
78
79   MeshActor actor(NULL);
80   DALI_TEST_CHECK(!actor);
81
82   MeshActor* actorPtr = new MeshActor();
83   DALI_TEST_CHECK( ! *actorPtr );
84   delete actorPtr;
85   END_TEST;
86 }
87
88 int UtcDaliModelConstructorRefObject(void)
89 {
90   TestApplication application;
91   tet_infoline("Testing Dali::Model::Model(Internal::Model*)");
92
93   Model model(NULL);
94
95   DALI_TEST_CHECK(!model);
96   END_TEST;
97 }
98
99 int UtcDaliTextActorConstructorRefObject(void)
100 {
101   TestApplication application;
102   tet_infoline("Testing Dali::TextActor::TextActor(Internal::TextActor*)");
103   TextActor actor(NULL);
104   DALI_TEST_CHECK(!actor);
105   END_TEST;
106 }