Home | History | Annotate | Download | only in internal
      1 package org.testng.internal;
      2 
      3 /**
      4  * Symbols in this class are used by the Eclipse plug-in, do not modify them
      5  * without updating the plug-in as well.
      6  *
      7  * @author Cedric Beust <cedric (at) beust.com>
      8  * @since Aug 25, 2012
      9  */
     10 public class EclipseInterface {
     11   public static final Character OPENING_CHARACTER = '[';
     12   public static final Character CLOSING_CHARACTER = ']';
     13 
     14   public static final String ASSERT_LEFT = "expected " + OPENING_CHARACTER;
     15   public static final String ASSERT_LEFT2 = "expected not same " + OPENING_CHARACTER;
     16   public static final String ASSERT_MIDDLE = CLOSING_CHARACTER + " but found " + OPENING_CHARACTER;
     17   public static final String ASSERT_RIGHT = Character.toString(CLOSING_CHARACTER);
     18 }
     19