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

org.testng.internal.EclipseInterface Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.internal;

/**
 * Symbols in this class are used by the Eclipse plug-in, do not modify them
 * without updating the plug-in as well.
 *
 * @author Cedric Beust 
 * @since Aug 25, 2012
 */
public class EclipseInterface {
  public static final Character OPENING_CHARACTER = '[';
  public static final Character CLOSING_CHARACTER = ']';

  public static final String ASSERT_LEFT = "expected " + OPENING_CHARACTER;
  public static final String ASSERT_LEFT2 = "expected not same " + OPENING_CHARACTER;
  public static final String ASSERT_MIDDLE = CLOSING_CHARACTER + " but found " + OPENING_CHARACTER;
  public static final String ASSERT_RIGHT = Character.toString(CLOSING_CHARACTER);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy