Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/main/java/com/julienvey/trello/domain/Card.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,7 @@ public class Card extends TrelloEntity {
private String idList;
private String desc;
private String url;
private Date start;
private Date due;
private boolean dueComplete;
private List<String> idMembers;
Expand DownExpand Up@@ -90,6 +91,14 @@ public void setDesc(String desc) {
this.desc = desc;
}

public Date getStart() {
return start;
}

public void setStart(Date start) {
this.start = start;
}

public Date getDue() {
return due;
}
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -56,7 +56,7 @@ public void testGetOrganizationFetchBoard() {
List<Board> boards = trello.getOrganizationBoards(ORGANIZATION_ID);

assertThat(boards).isNotNull();
assertThat(boards).hasSize(1);
assertThat(boards).hasSize(2);

}

Expand Down