/** * Copyright © 2010-2011 Nokia * * 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.github.restdriver.clientdriver.example; import org.junit.After; import org.junit.Before; import com.github.restdriver.clientdriver.ClientDriver; import com.github.restdriver.clientdriver.ClientDriverFactory; /** * If you are using the Client Driver, you can have your unit tests extend this class which will setup a client driver and shut it down for you. * * @deprecated As of version 1.0.7 replaced by {@link com.github.restdriver.clientdriver.ClientDriverRule} */ @Deprecated public abstract class ClientDriverUnitTest { private ClientDriver clientDriver; /** * Starts the client driver. This will be called before your subclass' {@link Before}-annotated methods. */ @Before public final void startClientDriver() { clientDriver = new ClientDriverFactory().createClientDriver(); } /** * Shuts the client driver down, which will also verify that the expectations are correct. This will be called AFTER the {@link After}-annotated * methods in your subclass. */ @After public final void shutdownClientDriver() { clientDriver.shutdown(); } /** * Get the client driver which has been set up. This will be OK to refer to in your subclass' {@link Before} methods, as the superclass is called * first of all. * * @return The {@link ClientDriver} */ public final ClientDriver getClientDriver() { return clientDriver; } }