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