Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StringCatcher (0.1 sec)

  1. guava-tests/test/com/google/common/eventbus/StringCatcher.java

     *
     * <p>For testing fun, also includes a landmine method that EventBus tests are required not
     * to call ({@link #methodWithoutAnnotation(String)}).
     *
     * @author Cliff Biffle
     */
    public class StringCatcher {
      private List<String> events = Lists.newArrayList();
    
      @Subscribe
      public void hereHaveAString(@Nullable String string) {
        events.add(string);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed May 16 22:49:59 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/eventbus/EventBusTest.java

      }
    
      public void testMissingSubscribe() {
        bus.register(new Object());
      }
    
      public void testUnregister() {
        StringCatcher catcher1 = new StringCatcher();
        StringCatcher catcher2 = new StringCatcher();
        assertThrows(IllegalArgumentException.class, () -> bus.unregister(catcher1));
    
        bus.register(catcher1);
        bus.post(EVENT);
        bus.register(catcher2);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:16:45 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top