Change common test application
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-Script.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 #include <dali-toolkit-test-suite-utils.h>
21 #include <dali-toolkit/dali-toolkit.h>
22 #include <dali-toolkit/devel-api/scripting/script.h>
23
24 using namespace Dali;
25 using namespace Dali::Toolkit;
26
27 void dali_script_startup(void)
28 {
29   test_return_value = TET_UNDEF;
30 }
31
32 void dali_script_cleanup(void)
33 {
34   test_return_value = TET_PASS;
35 }
36
37 int UtcDaliScriptExecuteFileN(void)
38 {
39   ToolkitTestApplication application;
40   tet_infoline(" UtcDaliScriptExecuteFileN");
41
42   Script script = Script::New();
43
44   bool ok = script.ExecuteFile("non-existing file");
45
46   DALI_TEST_CHECK( !ok );
47
48   END_TEST;
49 }