FGCP: enable HttpApiMetadataTests for fgcp
Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/commit/2f112861 Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/tree/2f112861 Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/diff/2f112861 Branch: refs/heads/master Commit: 2f112861c78ce68b994f49b4b15462f4ffc105a4 Parents: b98dcf6 Author: Dies Koper <[email protected]> Authored: Wed May 22 15:14:48 2013 +1000 Committer: Andrew Gaul <[email protected]> Committed: Thu May 23 16:21:51 2013 -0700 ---------------------------------------------------------------------- .../fujitsu/fgcp/compute/FGCPApiMetadataTest.java | 33 +++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/blob/2f112861/fgcp/src/test/java/org/jclouds/fujitsu/fgcp/compute/FGCPApiMetadataTest.java ---------------------------------------------------------------------- diff --git a/fgcp/src/test/java/org/jclouds/fujitsu/fgcp/compute/FGCPApiMetadataTest.java b/fgcp/src/test/java/org/jclouds/fujitsu/fgcp/compute/FGCPApiMetadataTest.java new file mode 100644 index 0000000..5c50628 --- /dev/null +++ b/fgcp/src/test/java/org/jclouds/fujitsu/fgcp/compute/FGCPApiMetadataTest.java @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF 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.fujitsu.fgcp.compute; + +import org.jclouds.View; +import org.jclouds.fujitsu.fgcp.FGCPApiMetadata; +import org.jclouds.rest.internal.BaseHttpApiMetadataTest; +import org.testng.annotations.Test; + +import com.google.common.collect.ImmutableSet; +import com.google.common.reflect.TypeToken; + +@Test(groups = "unit", testName = "FGCPApiMetadataTest") +public class FGCPApiMetadataTest extends BaseHttpApiMetadataTest { + + public FGCPApiMetadataTest() { + super(new FGCPApiMetadata(), ImmutableSet.<TypeToken<? extends View>> of()); + } +}
