[M120 Migration][MM] Support W3C EME
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / unittest / utc_blink_ewk_view_context_get_func.cpp
1 // Copyright 2014 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "utc_blink_ewk_base.h"
6
7 class utc_blink_ewk_view_context_get : public utc_blink_ewk_base
8 {
9 };
10
11 /**
12  * @brief Tests if returns correct context when initiated with a valid webview.
13  */
14 TEST_F(utc_blink_ewk_view_context_get, POS_TEST)
15 {
16   Ewk_Context* context = ewk_view_context_get(GetEwkWebView());
17   if (!context)
18     utc_fail();
19 }
20
21 /**
22  * @brief Tests if returns NULL context when initiated with a NULL webview.
23  */
24 TEST_F(utc_blink_ewk_view_context_get, NEG_TEST)
25 {
26   Ewk_Context* context = ewk_view_context_get(NULL);
27   if (context)
28     utc_fail();
29 }