Package com.google.appengine.tck.gcsclient

Source Code of com.google.appengine.tck.gcsclient.GCSClientTestBase

/*
* Copyright 2013 Google Inc. All Rights Reserved.
* 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.
*/

package com.google.appengine.tck.gcsclient;

import com.google.appengine.tck.base.TestBase;
import com.google.appengine.tck.base.TestContext;
import com.google.appengine.tck.lib.LibUtils;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.shrinkwrap.api.spec.WebArchive;


/**
* @author <a href="mailto:hchen@google.com">Hannah Chen</a>
*/
public abstract class GCSClientTestBase extends TestBase {

    @Deployment
    public static WebArchive getDeployment() {
        // -Dtck.gcs.bucket

        TestContext context = new TestContext().setUseSystemProperties(true).setCompatibilityProperties(TCK_PROPERTIES);

        WebArchive war = getTckDeployment(context);

        war.addClass(GCSClientTestBase.class);

        LibUtils libUtils = new LibUtils();
        libUtils.addLibrary(war, "com.google.guava", "guava");
        libUtils.addLibrary(war, "com.google.appengine.tools", "appengine-gcs-client");

        return war;
    }
}
TOP

Related Classes of com.google.appengine.tck.gcsclient.GCSClientTestBase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.