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