Package org.fest.assertions

Examples of org.fest.assertions.BasicDescription


   * @param target the font to manage.
   * @param description this fixture's description.
   * @throws NullPointerException if {@code target} is {@code null}.
   */
  public FontFixture(@Nonnull Font target, @Nonnull String description) {
    this(target, new BasicDescription(description));
  }
View Full Code Here


   * Creates a new {@link Condition}.
   *
   * @param description describes this condition.
   */
  public Condition(@Nonnull String description) {
    this(new BasicDescription(description));
  }
View Full Code Here

   * @param target the color to manage.
   * @param description this fixture's description.
   * @throws NullPointerException if {@code target} is {@code null}.
   */
  public ColorFixture(@Nonnull Color target, @Nonnull String description) {
    this(target, new BasicDescription(description));
  }
View Full Code Here

   * @param matcher specifies the condition that the AWT or Swing {@code Component} we are looking for needs to match.
   * @param root the root {@code Container} used as the starting point of the search.
   */
  public ComponentFoundCondition(@Nonnull String description, @Nonnull ComponentFinder finder,
      @Nonnull ComponentMatcher matcher, @Nullable Container root) {
    this(new BasicDescription(description), finder, matcher, root);
  }
View Full Code Here

   * @param target the font to manage.
   * @param description this fixture's description.
   * @throws NullPointerException if <code>target</code> is <code>null</code>.
   */
  public FontFixture(Font target, String description) {
    this(target, new BasicDescription(description));
  }
View Full Code Here

   * @param target the color to manage.
   * @param description this fixture's description.
   * @throws NullPointerException if <code>target</code> is <code>null</code>.
   */
  public ColorFixture(Color target, String description) {
    this(target, new BasicDescription(description));
  }
View Full Code Here

   * @param finder performs the component search.
   * @param matcher specifies the condition that the component we are looking for needs to match.
   * @param root the root used as the starting point of the search.
   */
  public ComponentFoundCondition(String description, ComponentFinder finder, ComponentMatcher matcher, Container root) {
    this(new BasicDescription(description), finder, matcher, root);
  }
View Full Code Here

  /**
   * Creates a new <code>{@link Condition}</code>.
   * @param description describes this condition.
   */
  public Condition(String description) {
    this(new BasicDescription(description));
  }
View Full Code Here

TOP

Related Classes of org.fest.assertions.BasicDescription

Copyright © 2018 www.massapicom. 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.