f3a7237a58091a39c007a7cf6e04ac56d5a86c2b
[framework/web/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 RUNNER_TEST(ScopedPtr_Zero)
28 {
29     DPL::ScopedPtr<char> ptr;
30
31     RUNNER_ASSERT(!ptr);
32     RUNNER_ASSERT(!!!ptr);
33 }
34
35 RUNNER_TEST(ScopedPtr_NonZero)
36 {
37     DPL::ScopedPtr<char> ptr(new char(7));
38
39     RUNNER_ASSERT(ptr);
40     RUNNER_ASSERT(!!ptr);
41 }
42
43 RUNNER_TEST(ScopedPtr_Reset)
44 {
45     DPL::ScopedPtr<char> ptr(new char(7));
46     ptr.Reset();
47
48     RUNNER_ASSERT(!ptr);
49
50     ptr.Reset(new char);
51     RUNNER_ASSERT(ptr);
52 }
53
54 RUNNER_TEST(ScopedPtr_Operators)
55 {
56     DPL::ScopedPtr<char> ptr(new char(7));
57
58     RUNNER_ASSERT(*ptr == *ptr.Get());
59 }