All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.swing.junit.testcase.AssertJSwingJUnitTestCase Maven / Gradle / Ivy

There is a newer version: 3.17.1
Show newest version
/**
 * 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.
 *
 * Copyright 2012-2015 the original author or authors.
 */
package org.assertj.swing.junit.testcase;

import org.assertj.swing.edt.FailOnThreadViolationRepaintManager;
import org.assertj.swing.testing.AssertJSwingTestCaseTemplate;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;

/**
 * Understands a template for test cases that use AssertJ-Swing and JUnit. This template installs a
 * {@link FailOnThreadViolationRepaintManager} to catch violations of Swing thread rules and manages both
 * creation and clean up of a {@link org.assertj.swing.core.Robot}.
 *
 * @author Alex Ruiz
 */
public abstract class AssertJSwingJUnitTestCase extends AssertJSwingTestCaseTemplate {

  /**
   * Installs a {@link FailOnThreadViolationRepaintManager} to catch violations of Swing threading rules.
   */
  @BeforeClass
  public static final void setUpOnce() {
    FailOnThreadViolationRepaintManager.install();
  }

  /**
   * Sets up this test's fixture, starting from creation of a new {@link org.assertj.swing.core.Robot}.
   *
   * @see #setUpRobot()
   * @see #onSetUp()
   */
  @Before
  public final void setUp() {
    setUpRobot();
    onSetUp();
  }

  /**
   * Subclasses need set up their own test fixture in this method. This method is called after
   * executing {@link #setUp()}.
   */
  protected abstract void onSetUp();

  /**
   * Removes the {@link FailOnThreadViolationRepaintManager} again to allow EDT violating and EDT safe
   * tests in the same suite.
   */
  @AfterClass
  public static final void tearDownOnce() {
    FailOnThreadViolationRepaintManager.uninstall();
  }

  /**
   * Cleans up any resources used in this test. After calling {@link #onTearDown()}, this method cleans up
   * resources used by this test's {@link org.assertj.swing.core.Robot}.
   *
   * @see #cleanUp()
   * @see #onTearDown()
   */
  @After
  public final void tearDown() {
    try {
      onTearDown();
    } finally {
      cleanUp();
    }
  }

  /**
   * Subclasses need to clean up resources in this method. This method is called before executing
   * {@link #tearDown()}.
   */
  protected void onTearDown() {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy