Merge branch 'tizen' into new_text
[platform/core/uifw/dali-core.git] / automated-tests / src / dali-internal / utc-Dali-Internal-Character.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0
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
18 #include <iostream>
19
20 #include <stdlib.h>
21 #include <dali/public-api/dali-core.h>
22 #include <dali-test-suite-utils.h>
23
24 using namespace Dali;
25
26 void utc_dali_character_startup(void)
27 {
28   test_return_value = TET_UNDEF;
29 }
30
31 void utc_dali_character_cleanup(void)
32 {
33   test_return_value = TET_PASS;
34 }
35
36 int UtcDaliCharacterGetImplementation(void)
37 {
38   TestApplication application;
39
40   Text text( std::string( "Hello world" ) );
41   Character c = text[0];
42
43   const Internal::Character& characterImpl1 = c.GetImplementation();
44
45   DALI_TEST_CHECK( NULL != &characterImpl1 );
46
47   Internal::Character& characterImpl2 = c.GetImplementation();
48
49   DALI_TEST_CHECK( NULL != &characterImpl2 );
50
51   END_TEST;
52 }