Skip to content

Commit

Permalink
Code review adjusts in Day007Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Viniberaldo committed Sep 29, 2024
2 parents 0b189bc + df1d1f5 commit 8a5d831
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.thegreatapi.ahundreddaysofjava.day007;

import java.text.MessageFormat;

public class Day007 {

public static void main(String[] args) {
showMessage("Java", "is", "great");
}

public static void showMessage(String param1, String param2, String param3) {
String message = MessageFormat.format("This message contains 3 parameters. The #1 is ''{0}'', the #2 is ''{1}'', and the #3 is ''{2}''.",
param1, param2, param3);
System.out.println(message);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import java.text.MessageFormat;
import static org.assertj.core.api.Assertions.assertThat;
import org.junit.jupiter.api.AfterEach;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

Expand Down Expand Up @@ -36,7 +35,6 @@ void shouldFormatMessageCorrectly() {
String expectedMessage = "This message contains 3 parameters. The #1 is"
+ " 'Hello', the #2 is 'World', and the #3 is 'Java'.";
assertThat(actualMessage).isEqualTo(expectedMessage);
//assertEquals(expectedMessage, outputStreamCaptor.toString().trim());
}

@AfterEach
Expand Down

0 comments on commit 8a5d831

Please sign in to comment.