Skip to content

Commit

Permalink
SP-752 Code Examples: Java
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarzybok-sumoheavy committed Jan 15, 2024
1 parent 5268ab3 commit bf18891
Showing 1 changed file with 79 additions and 78 deletions.
157 changes: 79 additions & 78 deletions src/test/java/com/bitpay/sdk/model/settlement/SettlementTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

package com.bitpay.sdk.model.settlement;

import java.time.ZonedDateTime;
import java.util.Collections;
import java.util.List;
import org.junit.jupiter.api.Assertions;
Expand Down Expand Up @@ -76,84 +77,84 @@ public void it_should_change_status() {
// then
Assertions.assertEquals(expected, testedClass.getStatus());
}
//
// @Test
// public void it_should_change_dateCreated() {
// // given
// Long expected = 12L;
// Settlement testedClass = this.getTestedClass();
//
// // when
// testedClass.setDateCreated(expected);
//
// // then
// Assertions.assertEquals(expected, testedClass.getDateCreated());
// }
//
// @Test
// public void it_should_change_dateExecuted() {
// // given
// Long expected = 12L;
// Settlement testedClass = this.getTestedClass();
//
// // when
// testedClass.setDateExecuted(expected);
//
// // then
// Assertions.assertEquals(expected, testedClass.getDateExecuted());
// }
//
// @Test
// public void it_should_change_dateCompleted() {
// // given
// Long expected = 12L;
// Settlement testedClass = this.getTestedClass();
//
// // when
// testedClass.setDateCompleted(expected);
//
// // then
// Assertions.assertEquals(expected, testedClass.getDateCompleted());
// }
//
// @Test
// public void it_should_change_openingDate() {
// // given
// Long expected = 12L;
// Settlement testedClass = this.getTestedClass();
//
// // when
// testedClass.setOpeningDate(expected);
//
// // then
// Assertions.assertEquals(expected, testedClass.getOpeningDate());
// }
//
// @Test
// public void it_should_change_closingDate() {
// // given
// Long expected = 12L;
// Settlement testedClass = this.getTestedClass();
//
// // when
// testedClass.setClosingDate(expected);
//
// // then
// Assertions.assertEquals(expected, testedClass.getClosingDate());
// }
//
// @Test
// public void it_should_change_openingBalance() {
// // given
// Float expected = 12.34F;
// Settlement testedClass = this.getTestedClass();
//
// // when
// testedClass.setOpeningBalance(expected);
//
// // then
// Assertions.assertEquals(expected, testedClass.getOpeningBalance());
// }

@Test
public void it_should_change_dateCreated() {
// given
ZonedDateTime expected = ZonedDateTime.now();
Settlement testedClass = this.getTestedClass();

// when
testedClass.setDateCreated(expected);

// then
Assertions.assertEquals(expected, testedClass.getDateCreated());
}

@Test
public void it_should_change_dateExecuted() {
// given
ZonedDateTime expected = ZonedDateTime.now();
Settlement testedClass = this.getTestedClass();

// when
testedClass.setDateExecuted(expected);

// then
Assertions.assertEquals(expected, testedClass.getDateExecuted());
}

@Test
public void it_should_change_dateCompleted() {
// given
ZonedDateTime expected = ZonedDateTime.now();
Settlement testedClass = this.getTestedClass();

// when
testedClass.setDateCompleted(expected);

// then
Assertions.assertEquals(expected, testedClass.getDateCompleted());
}

@Test
public void it_should_change_openingDate() {
// given
ZonedDateTime expected = ZonedDateTime.now();
Settlement testedClass = this.getTestedClass();

// when
testedClass.setOpeningDate(expected);

// then
Assertions.assertEquals(expected, testedClass.getOpeningDate());
}

@Test
public void it_should_change_closingDate() {
// given
ZonedDateTime expected = ZonedDateTime.now();
Settlement testedClass = this.getTestedClass();

// when
testedClass.setClosingDate(expected);

// then
Assertions.assertEquals(expected, testedClass.getClosingDate());
}

@Test
public void it_should_change_openingBalance() {
// given
Float expected = 12.34F;
Settlement testedClass = this.getTestedClass();

// when
testedClass.setOpeningBalance(expected);

// then
Assertions.assertEquals(expected, testedClass.getOpeningBalance());
}

@Test
public void it_should_change_ledgerEntriesSum() {
Expand Down

0 comments on commit bf18891

Please sign in to comment.