Skip to content

Commit

Permalink
ABC
Browse files Browse the repository at this point in the history
  • Loading branch information
diegosanchez committed Nov 19, 2024
1 parent 7c14d76 commit fa810f8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/test/edu/fiuba/algo3/entrega_1/MessageTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,11 @@ public void messageGreetingDefaultLanguage() {

assertEquals("Hola Mundo!", message.greet());
}

@Test
public void messageGreetingDefaultLanguage2() {
Message message = new Message("Hola Mundo!", "Hello world!");

assertEquals("Hola Mundo!", message.greet());
}
}

0 comments on commit fa810f8

Please sign in to comment.