Property refactor in dali-core: Toolkit changes for compiling
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-MaskEffect.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 #include <stdlib.h>
20
21 // Need to override adaptor classes for toolkit test harness, so include
22 // test harness headers before dali headers.
23 #include <dali-toolkit-test-suite-utils.h>
24
25 #include <dali.h>
26 #include <dali-toolkit/dali-toolkit.h>
27
28 using namespace Dali;
29
30 void utc_dali_toolkit_mask_effect_startup(void)
31 {
32   test_return_value = TET_UNDEF;
33 }
34
35 void utc_dali_toolkit_mask_effect_cleanup(void)
36 {
37   test_return_value = TET_PASS;
38 }
39
40
41 int UtcDaliMaskEffectCreateEffect(void)
42 {
43   ToolkitTestApplication application;
44
45   BufferImage image = CreateBufferImage();
46
47   ShaderEffect effect = Toolkit::MaskEffect::New( image );
48   DALI_TEST_CHECK( effect );
49   END_TEST;
50 }
51
52 int UtcDaliMaskEffectDestructor(void)
53 {
54   ToolkitTestApplication application;
55
56   Toolkit::MaskEffect* effect = new Toolkit::MaskEffect();
57   delete effect;
58
59   DALI_TEST_CHECK( true );
60   END_TEST;
61 }