upload tizen1.0 source
[framework/web/wrt-commons.git] / tests / core / test_scoped_array.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_array.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of test scoped array
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/scoped_array.h>
24
25 RUNNER_TEST_GROUP_INIT(DPL)
26
27 RUNNER_TEST(ScopedArray_Zero)
28 {
29     DPL::ScopedArray<char> array;
30
31     RUNNER_ASSERT(!array);
32     RUNNER_ASSERT(!!!array);
33 }
34
35 RUNNER_TEST(ScopedArray_NonZero)
36 {
37     DPL::ScopedArray<char> array(new char[7]);
38
39     RUNNER_ASSERT(array);
40     RUNNER_ASSERT(!!array);
41 }
42
43 RUNNER_TEST(ScopedArray_Reset)
44 {
45     DPL::ScopedArray<char> array(new char[7]);
46     array.Reset();
47
48     RUNNER_ASSERT(!array);
49
50     array.Reset(new char);
51     RUNNER_ASSERT(array);
52 }
53
54 RUNNER_TEST(ScopedArray_ArrayOperator)
55 {
56     DPL::ScopedArray<char> array(new char[7]);
57
58     array[1] = array[2] = 3;
59
60     RUNNER_ASSERT(array[1] == 3);
61     RUNNER_ASSERT(array[2] == 3);
62 }