Update README for dali-swig
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit-internal / utc-Dali-Visuals.cpp
1 /*
2  * Copyright (c) 2016 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
22 #include <dali-toolkit-test-suite-utils.h>
23 #include <dali-toolkit/public-api/visuals/visual-properties.h>
24 #include <dali-toolkit/internal/visuals/visual-factory-cache.h>
25 #include <dali-toolkit/internal/visuals/wireframe/wireframe-visual.h>
26
27 using namespace Dali::Toolkit::Internal;
28
29 namespace
30 {
31
32 class DummyWireframeVisual : public WireframeVisual
33 {
34 public:
35
36   DummyWireframeVisual( VisualFactoryCache& factoryCache )
37   : WireframeVisual( factoryCache )
38   {}
39
40   virtual ~DummyWireframeVisual()
41   {}
42
43   void DoSetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue )
44   {
45     WireframeVisual::DoSetProperty( index, propertyValue );
46   }
47
48   Dali::Property::Value DoGetProperty( Dali::Property::Index index )
49   {
50     return WireframeVisual::DoGetProperty( index );
51   }
52 };
53
54 } // namespace
55
56 int UtcDaliWireframeVisual(void)
57 {
58   // The goal of this test case is to cover the WireframeVisual::DoSetProperty() and
59   // WireframeVisual::DoGetProperty() which are unreachable from the public API.
60
61   tet_infoline( " UtcDaliWireframeVisual" );
62
63   VisualFactoryCache* visualFactoryCache = new VisualFactoryCache();
64
65   DummyWireframeVisual visual( *visualFactoryCache );
66
67   visual.DoSetProperty( Dali::Toolkit::Visual::Property::TYPE, Dali::Toolkit::Visual::WIREFRAME );
68   Dali::Property::Value value = visual.DoGetProperty( Dali::Toolkit::Visual::Property::TYPE );
69
70   tet_result(TET_PASS);
71   END_TEST;
72 }