54fec21ccf193e95373a42880d6464bb88322116
[platform/upstream/iotivity.git] / service / easy-setup / sdk / mediator / android / EasySetupCore / src / androidTest / java / org / iotivity / service / easysetup / mediator / EasySetupServiceConfigTest.java
1 /**\r
2  * ***************************************************************\r
3  * <p/>\r
4  * Copyright 2015 Samsung Electronics All Rights Reserved.\r
5  * <p/>\r
6  * <p/>\r
7  * <p/>\r
8  * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * you may not use this file except in compliance with the License.\r
10  * You may obtain a copy of the License at\r
11  * <p/>\r
12  * http://www.apache.org/licenses/LICENSE-2.0\r
13  * <p/>\r
14  * Unless required by applicable law or agreed to in writing, software\r
15  * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * See the License for the specific language governing permissions and\r
18  * limitations under the License.\r
19  * <p/>\r
20  * ****************************************************************\r
21  */\r
22 \r
23 package org.iotivity.service.easysetup.mediator;\r
24 \r
25 import android.test.AndroidTestCase;\r
26 \r
27 \r
28 public class EasySetupServiceConfigTest extends AndroidTestCase {\r
29 \r
30 \r
31     public void testConstruction() {\r
32 \r
33         EasySetupService service = EasySetupService.getInstance(getContext(), new EasySetupStatus() {\r
34             @Override\r
35             public void onFinished(EnrolleeDevice enrolledevice) {\r
36 \r
37             }\r
38 \r
39             @Override\r
40             public void onProgress(EnrolleeDevice enrolleeDevice) {\r
41 \r
42             }\r
43         });\r
44 \r
45         assertTrue(service != null);\r
46 \r
47 \r
48     }\r
49 \r
50     public void testFinish() {\r
51         EasySetupService service = EasySetupService.getInstance(getContext(), new EasySetupStatus() {\r
52             @Override\r
53             public void onFinished(EnrolleeDevice enrolledevice) {\r
54 \r
55             }\r
56 \r
57             @Override\r
58             public void onProgress(EnrolleeDevice enrolleeDevice) {\r
59 \r
60             }\r
61         });\r
62         service.finish();\r
63 \r
64         // No runtime exception is thrown means test is successful\r
65         assertTrue(true);\r
66 \r
67     }\r
68 \r
69     public void testEnrolleeDeviceFacotryConstruction() {\r
70         EnrolleeDeviceFactory factory = EnrolleeDeviceFactory.newInstance(getContext());\r
71         assertTrue(factory != null);\r
72     }\r
73 \r
74 }\r