summaryrefslogtreecommitdiffstats
path: root/keystone-client/src/test/java/com/woorea/openstack/keystone/api/RolesResourceTest.java
diff options
context:
space:
mode:
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>2018-02-11 06:56:21 +0000
committersubhash kumar singh <subhash.kumar.singh@huawei.com>2018-02-11 06:57:56 +0000
commit8b97b6d04be40508021d6ba507ddcd8dba17d5d2 (patch)
treee13559a7d22bf3fdc3c76346e48a9febca06ff0b /keystone-client/src/test/java/com/woorea/openstack/keystone/api/RolesResourceTest.java
parent0d192472b3bc36791877dfbfa72d24d4fc266512 (diff)
Improve code coverage for so-libs
Improve code coverage for so-libs. Change-Id: I1fd25d4f6730ba1cadcccafe991c63ce79690be4 Issue-ID: SO-369 Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'keystone-client/src/test/java/com/woorea/openstack/keystone/api/RolesResourceTest.java')
-rw-r--r--keystone-client/src/test/java/com/woorea/openstack/keystone/api/RolesResourceTest.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/keystone-client/src/test/java/com/woorea/openstack/keystone/api/RolesResourceTest.java b/keystone-client/src/test/java/com/woorea/openstack/keystone/api/RolesResourceTest.java
new file mode 100644
index 0000000..fa17a9d
--- /dev/null
+++ b/keystone-client/src/test/java/com/woorea/openstack/keystone/api/RolesResourceTest.java
@@ -0,0 +1,42 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+package com.woorea.openstack.keystone.api;
+
+import com.woorea.openstack.keystone.model.Role;
+import org.junit.Test;
+
+import static org.junit.Assert.*;
+
+public class RolesResourceTest {
+
+ RolesResource rolesResource = new RolesResource(null);
+
+ @Test
+ public void listTest() throws Exception {
+ rolesResource.list();
+ }
+
+ @Test
+ public void createTest() throws Exception {
+ rolesResource.create(new Role());
+ }
+
+ @Test
+ public void deleteTest() throws Exception {
+ rolesResource.delete("123");
+ }
+
+} \ No newline at end of file