Package org.trello4j.model

Examples of org.trello4j.model.Card


    Map<String, String> map = new HashMap<String, String>();
        map.put("desc", description);

        // WHEN
    Card card = new TrelloImpl(API_KEY, API_TOKEN).createCard(listId, name, map);

        // THEN
    assertNotNull(card);
    assertThat(card.getName(), equalTo(name));
    assertThat(card.getDesc(), equalTo(description));
  }
View Full Code Here

TOP

Related Classes of org.trello4j.model.Card

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.