Home | History | Annotate | Download | only in annotation
      1 package com.xtremelabs.robolectric.annotation;
      2 
      3 /**
      4  * Indicates that a JUnit test class or method should be checked for I18N/L10N-safety.
      5  *
      6  * @see DisableStrictI18n
      7  */
      8 @java.lang.annotation.Documented
      9 @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
     10 @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE,java.lang.annotation.ElementType.METHOD})
     11 public @interface EnableStrictI18n {
     12 }
     13