tizen 2.3.1 release
[framework/web/wearable/wrt-commons.git] / tests / core / test_scoped_ptr.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_scoped_ptr.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of test scoped ptr
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/scoped_ptr.h>
24
25 RUNNER_TEST_GROUP_INIT(DPL)
26
27 /*
28 Name: ScopedPtr_Zero
29 Description: Checks if operator! works
30 Expected: resource should be not set
31 */
32 RUNNER_TEST(ScopedPtr_Zero)
33 {
34     DPL::ScopedPtr<char> ptr;
35
36     RUNNER_ASSERT(!ptr);
37     RUNNER_ASSERT(!!!ptr);
38 }
39
40 /*
41 Name: ScopedPtr_NonZero
42 Description: Checks if operator! works
43 Expected: resource should be set
44 */
45 RUNNER_TEST(ScopedPtr_NonZero)
46 {
47     DPL::ScopedPtr<char> ptr(new char(7));
48
49     RUNNER_ASSERT(ptr);
50     RUNNER_ASSERT(!!ptr);
51 }
52
53 /*
54 Name: ScopedPtr_Reset
55 Description: Checks reseting scoped ptr
56 Expected: resource should be not set after reset
57 */
58 RUNNER_TEST(ScopedPtr_Reset)
59 {
60     DPL::ScopedPtr<char> ptr(new char(7));
61     ptr.Reset();
62
63     RUNNER_ASSERT(!ptr);
64
65     ptr.Reset(new char);
66     RUNNER_ASSERT(ptr);
67 }
68
69 /*
70 Name: ScopedPtr_Operators
71 Description: Checks access operator
72 Expected: address of resource should be same as this, received from Get() method
73 */
74 RUNNER_TEST(ScopedPtr_Operators)
75 {
76     DPL::ScopedPtr<char> ptr(new char(7));
77
78     RUNNER_ASSERT(*ptr == *ptr.Get());
79 }