Searched refs:MatchAnything (Results 1 - 1 of 1) sorted by relevance

/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java277 public static <T> T anyObject() { return LittleMock.<T>addMatcher(new MatchAnything(), null); }
283 public static int anyInt() { return addMatcher(new MatchAnything(), 0); }
286 public static float anyFloat() { return addMatcher(new MatchAnything(), 0f); }
289 public static double anyDouble() { return addMatcher(new MatchAnything(), 0.0); }
292 public static boolean anyBoolean() { return addMatcher(new MatchAnything(), false); }
295 public static short anyShort() { return addMatcher(new MatchAnything(), (short) 0); }
298 public static char anyChar() { return addMatcher(new MatchAnything(), '\u0000'); }
301 public static long anyLong() { return addMatcher(new MatchAnything(), 0L); }
304 public static byte anyByte() { return addMatcher(new MatchAnything(), (byte) 0); }
996 private static class MatchAnything implement class in class:LittleMock
[all...]

Completed in 30 milliseconds