tizen 2.3 release
[framework/web/wearable/wrt-commons.git] / tests / core / test_single_instance.cpp
1 /*
2  * Copyright (c) 2013 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_single_instance.cpp
18  * @author      Slawomir Pajak (s.pajak@partner.samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of single instance tests
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/single_instance.h>
24
25 RUNNER_TEST_GROUP_INIT(DPL)
26
27 using namespace DPL;
28
29 /*
30 Name: SingleInstance_lock_release
31 Description: tests single instance simple case
32 Expected: all operations succeed, no exceptions
33 */
34 RUNNER_TEST(SingleInstance_lock_release)
35 {
36     SingleInstance instance;
37     RUNNER_ASSERT(instance.TryLock("testLockFile"));
38
39     instance.Release();
40     //Multiple call should be fine.
41     instance.Release();
42
43 }