/** * 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.sqs.internal; import java.net.URI; import org.jclouds.date.DateService; import org.jclouds.rest.ConfiguresRestClient; import org.jclouds.rest.internal.BaseRestApiExpectTest; import org.jclouds.sqs.config.SQSRestClientModule; import com.google.inject.Module; /** * * @author Adrian Cole */ public class BaseSQSExpectTest<T> extends BaseRestApiExpectTest<T> { protected URI queue = URI.create("https://sqs.us-east-1.amazonaws.com/993194456877/adrian-sqs11/"); public BaseSQSExpectTest() { provider = "sqs"; } @ConfiguresRestClient private static final class TestSQSRestClientModule extends SQSRestClientModule { @Override protected String provideTimeStamp(final DateService dateService) { return "2009-11-08T15:54:08.897Z"; } } @Override protected Module createModule() { return new TestSQSRestClientModule(); } }