Examples of TList


Examples of org.as.jtrello.lists.TList

    }
  }
 
  @Test
  public void testCreate() {
    TList list = new TList();
    list.setName("TestList");
    list.setIdBoard(props.getProperty("TRELLO_BOARD_TOWRITE"));
    try {
      TList newList = client.getLists().create(list);
      System.out.println("DEBUG list=" + list.toString());
      System.out.println("DEBUG newList=" + newList.toString());
    } catch (Exception e) {
      e.printStackTrace();
      fail();
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.