Exemplo n.º 1
0
 public void testKeywordStatic() {
   ListAlertsOptions options = keyword("fred");
   assertEquals(ImmutableList.of("fred"), options.buildQueryParameters().get("keyword"));
 }
Exemplo n.º 2
0
 public void testTypeStatic() {
   ListAlertsOptions options = type("42");
   assertEquals(ImmutableList.of("42"), options.buildQueryParameters().get("type"));
 }
Exemplo n.º 3
0
 public void testIdStatic() {
   ListAlertsOptions options = id(6);
   assertEquals(ImmutableList.of("6"), options.buildQueryParameters().get("id"));
 }