Skip to content

Commit 89de7c1

Browse files
committed
update unit tests and pom version
1 parent 3a287fd commit 89de7c1

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Version 4.x and higher of Xero Java SDK only supports OAuth2 authentication and
1010
* fixed asset
1111
* projects
1212
* payroll au
13-
* payroll uk - beta
13+
* payroll uk
1414

1515
Coming soon
1616
* payroll nz
@@ -178,7 +178,6 @@ try {
178178
We've replace a specific logging plugin (org.apache.logging.log4j) with a logging facade org.slf4j. With version 4.x we'll use SLF4J and allow you to plug in the logging library of your choice at deployment time. This [blog post](https://www.baeldung.com/slf4j-with-log4j2-logback) explains how to add log4j2 for logging. To configure, add a log4j.properties file to the Resources directory.
179179

180180

181-
182181
## Looking for version 3.x of the SDK?
183182
Codebase, samples and setup instructions located in [java-3.x branch](https://github.com/XeroAPI/Xero-Java/tree/java-3.x).
184183

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>xero-java</artifactId>
66
<packaging>jar</packaging>
77
<name>xero-java</name>
8-
<version>4.0.2</version>
8+
<version>4.1.0</version>
99
<url>https://github.com/XeroAPI/Xero-Java</url>
1010
<description>This is the official Java SDK for Xero API</description>
1111
<licenses>

src/test/java/com/xero/api/client/AccountingApiPaymentsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public void getPaymentsTest() throws IOException {
141141
OffsetDateTime ifModifiedSince = null;
142142
String where = null;
143143
String order = null;
144-
Payments response = accountingApi.getPayments(accessToken,xeroTenantId,ifModifiedSince, where, order);
144+
Payments response = accountingApi.getPayments(accessToken,xeroTenantId,ifModifiedSince, where, order,1);
145145

146146
assertThat(response.getPayments().get(0).getInvoice().getInvoiceNumber(), is(equalTo("INV-0002")));
147147
assertThat(response.getPayments().get(0).getAccount().getCode(), is(equalTo("970")));

src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public void updateEmployeeLeaveTest() throws IOException {
152152
assertThat(response.getLeave().getPeriods().get(0).getPeriodEndDate(), is(equalTo(LocalDate.of(2020, 04, 26))));
153153
assertThat(response.getLeave().getPeriods().get(0).getNumberOfUnits(), is(equalTo(1.0)));
154154
assertThat(response.getLeave().getPeriods().get(0).getPeriodStatus(), is(equalTo(com.xero.models.payrolluk.LeavePeriod.PeriodStatusEnum.APPROVED)));
155-
assertThat(response.getLeave().getUpdatedDateUTC(), is(equalTo(LocalDateTime.of(2020, 04, 17, 18, 18, 30).plusNanos(614537) )));
155+
assertThat(response.getLeave().getUpdatedDateUTC(), is(equalTo(LocalDateTime.of(2020, 04, 17, 18, 18, 30).plusNanos(614537000) )));
156156

157157
//System.out.println(response.toString());
158158
}

0 commit comments

Comments
 (0)