From 273de4977c86762899eaedf989641bb7cb1a532d Mon Sep 17 00:00:00 2001 From: Mike Arnold Date: Sat, 10 Mar 2012 07:16:18 -0600 Subject: [PATCH] creating live test for HP Cloud specific keypair client --- .../HPCloudComputeKeyPairClientLiveTest.java | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 labs/hpcloud-compute/src/test/java/org/jclouds/hpcloud/compute/features/HPCloudComputeKeyPairClientLiveTest.java diff --git a/labs/hpcloud-compute/src/test/java/org/jclouds/hpcloud/compute/features/HPCloudComputeKeyPairClientLiveTest.java b/labs/hpcloud-compute/src/test/java/org/jclouds/hpcloud/compute/features/HPCloudComputeKeyPairClientLiveTest.java new file mode 100644 index 0000000000..f7982fe934 --- /dev/null +++ b/labs/hpcloud-compute/src/test/java/org/jclouds/hpcloud/compute/features/HPCloudComputeKeyPairClientLiveTest.java @@ -0,0 +1,34 @@ +/** + * Licensed to jclouds, Inc. (jclouds) under one or more + * contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. jclouds licenses this file + * to you 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. + */ +package org.jclouds.hpcloud.compute.features; + +import org.jclouds.openstack.nova.v1_1.features.KeyPairClientLiveTest; +import org.testng.annotations.Test; + +/** + * + * @author Michael Arnold + */ +@Test(groups = "live", testName = "HPCloudComputeKeyPairClientLiveTest") +public class HPCloudComputeKeyPairClientLiveTest extends KeyPairClientLiveTest { + public HPCloudComputeKeyPairClientLiveTest() { + provider = "hpcloud-compute"; + } + +}