001 /* 002 * Created on Nov 17, 2007 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with 005 * the License. You may obtain a copy of the License at 006 * 007 * http://www.apache.org/licenses/LICENSE-2.0 008 * 009 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on 010 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the 011 * specific language governing permissions and limitations under the License. 012 * 013 * Copyright @2007-2009 the original author or authors. 014 */ 015 package org.fest.swing.junit.runner; 016 017 import org.junit.internal.runners.InitializationError; 018 019 /** 020 * Understands a JUnit 4.3.1 test runner that takes a screenshot of a failed GUI test. 021 * 022 * @author Alex Ruiz 023 * @author Yvonne Wang 024 * 025 * @deprecated use <code>{@link org.fest.swing.junit.v4_3_1.runner.GUITestRunner}</code> instead. 026 */ 027 @Deprecated 028 public class GUITestRunner extends org.fest.swing.junit.v4_3_1.runner.GUITestRunner { 029 030 /** 031 * Creates a new </code>{@link GUITestRunner}</code>. 032 * @param testClass the class containing the tests to run. 033 * @throws InitializationError if something goes wrong when creating this runner. 034 * @deprecated use <code>{@link org.fest.swing.junit.v4_3_1.runner.GUITestRunner}</code> instead. 035 */ 036 @Deprecated 037 public GUITestRunner(Class<?> testClass) throws InitializationError { 038 super(testClass); 039 } 040 }