0403c2835b66239efb93135db1fd65c5455ab078
[framework/web/wrt-commons.git] / tests / core / test_log_unhandled_exception.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file        test_log_unhandled_exception.cpp
18  * @author      Pawel Sikorski (p.marcinkiew@samsung.com)
19  * @version     1.0
20  * @brief
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/exception.h>
24 #include <iostream>
25
26 RUNNER_TEST_GROUP_INIT(DPL)
27
28 class MyException
29 {
30 };
31
32 class MyDPLException
33 {
34 public:
35     DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
36     DECLARE_EXCEPTION_TYPE(Base, MyException)
37 };
38
39 class MySTDException
40     : public std::exception
41 {
42 public:
43     virtual const char* what()const throw() { return "my std exception occurred";}
44 };
45
46 RUNNER_TEST(Log_Unknown_Exception)
47 {
48     UNHANDLED_EXCEPTION_HANDLER_BEGIN
49     {
50 //        throw MyException();
51     }
52     UNHANDLED_EXCEPTION_HANDLER_END
53     RUNNER_ASSERT(true);
54 }
55
56 RUNNER_TEST(Log_DPL_Exception)
57 {
58     UNHANDLED_EXCEPTION_HANDLER_BEGIN
59     {
60 //        Throw(MyDPLException::MyException);
61     }
62     UNHANDLED_EXCEPTION_HANDLER_END
63     RUNNER_ASSERT(true);
64 }
65
66 RUNNER_TEST(Log_STD_Exception)
67 {
68     UNHANDLED_EXCEPTION_HANDLER_BEGIN
69     {
70 //        throw MySTDException();
71     }
72     UNHANDLED_EXCEPTION_HANDLER_END
73     RUNNER_ASSERT(true);
74 }