summaryrefslogtreecommitdiffstats
path: root/nova-client/src/test/java/com/woorea/openstack/nova/api/ExtensionsResourceTest.java
diff options
context:
space:
mode:
authorSeshu-Kumar-M <seshu.kumar.m@huawei.com>2018-02-11 20:57:08 +0530
committerSeshu-Kumar-M <seshu.kumar.m@huawei.com>2018-02-11 20:59:06 +0530
commit05ac1667ec8690ab6a7623938f2d9a462e07aaec (patch)
treec20442d88e525aa1b9ac3ea33c67a0af877bb4fa /nova-client/src/test/java/com/woorea/openstack/nova/api/ExtensionsResourceTest.java
parentddbb344825aac39b7523babb66df754704daa2d1 (diff)
libs unit test cases
Issue-ID: SO-369 Change-Id: I86ff7fafb8386df6046b7989cef7444c1aed0446 Signed-off-by: Seshu-Kumar-M <seshu.kumar.m@huawei.com>
Diffstat (limited to 'nova-client/src/test/java/com/woorea/openstack/nova/api/ExtensionsResourceTest.java')
-rw-r--r--nova-client/src/test/java/com/woorea/openstack/nova/api/ExtensionsResourceTest.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/nova-client/src/test/java/com/woorea/openstack/nova/api/ExtensionsResourceTest.java b/nova-client/src/test/java/com/woorea/openstack/nova/api/ExtensionsResourceTest.java
new file mode 100644
index 0000000..1659e96
--- /dev/null
+++ b/nova-client/src/test/java/com/woorea/openstack/nova/api/ExtensionsResourceTest.java
@@ -0,0 +1,44 @@
+/*-
+ * ============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.nova.api;
+
+
+import com.woorea.openstack.base.client.HttpMethod;
+import com.woorea.openstack.base.client.OpenStackClient;
+import com.woorea.openstack.base.client.OpenStackRequest;
+import com.woorea.openstack.nova.model.Extensions;
+
+public class ExtensionsResourceTest {
+
+ private final OpenStackClient client;
+
+ public ExtensionsResourceTest(OpenStackClient client) {
+ this.client = client;
+ }
+
+ public List list(boolean detail) {
+ return new List(detail);
+ }
+
+ public class List extends OpenStackRequest<Extensions> {
+
+ public List(boolean detail) {
+ super(client, HttpMethod.GET, detail ? "extensions/detail" : "extensions", null, Extensions.class);
+ }
+ }
+}
+