Home | History | Annotate | Download | only in easymock

Lines Matching full:static

33     public static final String ENABLE_THREAD_SAFETY_CHECK_BY_DEFAULT = "easymock.enableThreadSafetyCheckByDefault";

41 public static final String NOT_THREAD_SAFE_BY_DEFAULT = "easymock.notThreadSafeByDefault";
54 public static <T> T createStrictMock(Class<T> toMock) {
70 public static <T> T createStrictMock(String name, Class<T> toMock) {
85 public static <T> T createMock(Class<T> toMock) {
102 public static <T> T createMock(String name, Class<T> toMock) {
118 public static <T> T createNiceMock(Class<T> toMock) {
136 public static <T> T createNiceMock(String name, Class<T> toMock) {
145 public static IMocksControl createStrictControl() {
154 public static IMocksControl createControl() {
165 public static IMocksControl createNiceControl() {
182 public static <T> IExpectationSetters<T> expect(T value) {
194 public static <T> IExpectationSetters<T> expectLastCall() {
199 private static <T> IExpectationSetters<T> getControlForLastCall() {
213 public static boolean anyBoolean() {
223 public static byte anyByte() {
233 public static char anyChar() {
243 public static int anyInt() {
253 public static long anyLong() {
263 public static float anyFloat() {
273 public static double anyDouble() {
283 public static short anyShort() {
294 public static <T> T anyObject() {
308 public static <T extends Comparable<T>> T geq(Comparable<T> value) {
321 public static byte geq(byte value) {
334 public static double geq(double value) {
347 public static float geq(float value) {
360 public static int geq(int value) {
373 public static long geq(long value) {
386 public static short geq(short value) {
400 public static <T extends Comparable<T>> T leq(Comparable<T> value) {
413 public static byte leq(byte value) {
426 public static double leq(double value) {
439 public static float leq(float value) {
452 public static int leq(int value) {
465 public static long leq(long value) {
478 public static short leq(short value) {
492 public static <T extends Comparable<T>> T gt(Comparable<T> value) {
505 public static byte gt(byte value) {
518 public static
531 public static float gt(float value) {
544 public static int gt(int value) {
557 public static long gt(long value) {
570 public static short gt(short value) {
584 public static <T extends Comparable<T>> T lt(Comparable<T> value) {
597 public static byte lt(byte value) {
610 public static double lt(double value) {
623 public static float lt(float value) {
636 public static int lt(int value) {
649 public static long lt(long value) {
662 public static short lt(short value) {
677 public static <T> T isA(Class<T> clazz) {
690 public static String contains(String substring) {
704 public static boolean and(boolean first, boolean second) {
718 public static byte and(byte first, byte second) {
732 public static char and(char first, char second) {
746 public static double and(double first, double second) {
760 public static float and(float first, float second) {
774 public static int and(int first, int second) {
788 public static long and(long first, long second) {
802 public static short and(short first, short second) {
818 public static <T> T and(T first, T second) {
832 public static boolean or(boolean first, boolean second) {
846 public static byte or(byte first, byte second) {
860 public static char or(char first, char second) {
874 public static double or(double first, double second) {
888 public static float or(float first, float second) {
902 public static int or(int first, int second) {
916 public static long or(long first, long second) {
930 public static short or(short first, short second) {
946 public static <T> T or(T first, T second) {
958 public static boolean not(boolean first) {
970 public static byte not(byte first) {
982 public static char not(char first) {
994 public static double not(double first) {
1006 public static float not(float first) {
1018 public static int not(int first) {
1030 public static long not(long first) {
1042 public static short not(short first) {
1056 public static <T> T not(T first) {
1068 public static boolean eq(boolean value) {
1080 public static byte eq(byte value) {
1092 public static char eq(char value) {
1104 public static double eq(double value) {
1116 public static float eq(float value) {
1128 public static int eq(int value) {
1140 public static long eq(long value) {
1152 public static short eq(short value) {
1165 public static <T> T eq(T value) {
1178 public static boolean[] aryEq(boolean[] value) {
1191 public static byte[] aryEq(byte[] value) {
1204 public static char[] aryEq(char[] value) {
1217 public static double[] aryEq(double[] value) {
1230 public static float[] aryEq(float[] value) {
1243 public static int[] aryEq(int[] value) {
1256 public static long[] aryEq(long[] value) {
1269 public static short[] aryEq(short[] value) {
1284 public static <T> T[] aryEq(T[] value) {
1295 public static <T> T isNull() {
1306 public static <T> T notNull() {
1319 public static String find(String regex) {
1332 public static String matches(String regex) {
1345 public static String startsWith(String prefix) {
1358 public static String endsWith(String suffix) {
1374 public static double eq(double value, double delta) {
1390 public static float eq(float value, float delta) {
1405 public static <T> T same(T value) {
1419 public static <T extends Comparable<T>> T cmpEq(Comparable<T> value) {
1438 public static <T> T cmp(T value, Comparator<? super T> comparator, LogicalOperator operator) {
1460 public static <T> T capture(Capture<T> captured) {
1476 // public static int capture(Capture<Integer> captured) {
1487 // public static long capture(Capture<Long> captured) {
1498 // public static float capture(Capture<Float> captured) {
1509 // public static double capture(Capture<Double> captured) {
1520 // public static byte capture(Capture<Byte> captured) {
1531 // public static char capture(Capture<Character> captured) {
1545 public static void replay(Object... mocks) {
1558 public static void reset(Object... mocks) {
1572 public static void resetToNice(Object... mocks) {
1586 public static void resetToDefault(Object... mocks) {
1600 public static void resetToStrict(Object... mocks) {
1613 public static void verify(Object... mocks) {
1630 public static void checkOrder(Object mock, boolean state) {
1640 public static void reportMatcher(IArgumentMatcher matcher) {
1644 private static MocksControl getControl(Object mock) {
1658 public static Object[] getCurrentArguments() {
1678 public static void makeThreadSafe(Object mock, boolean threadSafe) {
1694 public static void checkIsUsedInOneThread(Object mock,
1706 public static String getEasyMockProperty(String key) {
1716 * <b>Note:</b> This method is static. Setting a property will change the
1725 public static String setEasyMockProperty(String key, String value) {