Skip to content

Commit

Permalink
remove public modifiers in ExplanationOfBenefitTrimmerSTU3Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Rwolfe-Nava committed Mar 26, 2024
1 parent cbd5282 commit 9525b26
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;

public class ExplanationOfBenefitTrimmerSTU3Test {
class ExplanationOfBenefitTrimmerSTU3Test {
private static IBaseResource eobResource = null;
private static FhirContext context = FhirContext.forDstu3();

Expand All @@ -26,7 +26,7 @@ public class ExplanationOfBenefitTrimmerSTU3Test {
}

@Test
public void testEmptyList() {
void testEmptyList() {
ExplanationOfBenefitTrimmerSTU3.clearOutList(null);
List<Integer> list = new ArrayList<>();
ExplanationOfBenefitTrimmerSTU3.clearOutList(list);
Expand All @@ -38,7 +38,7 @@ public void testEmptyList() {
}

@Test
public void validateEmpty() {
void validateEmpty() {
ExplanationOfBenefit eobCarrier = (ExplanationOfBenefit) eobResource;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd", Locale.US);
assertNull(ExplanationOfBenefitTrimmerSTU3.getBenefit(null));
Expand Down Expand Up @@ -88,7 +88,7 @@ public void validateEmpty() {
}

@Test
public void testItemValues() {
void testItemValues() {
ExplanationOfBenefit eobCarrier = (ExplanationOfBenefit) eobResource;
if (eobCarrier.getItem() != null) {
for (var item : eobCarrier.getItem()) {
Expand Down

0 comments on commit 9525b26

Please sign in to comment.