Skip to content

Instantly share code, notes, and snippets.

@scorobogaci
Created May 25, 2020 14:29
Show Gist options
  • Save scorobogaci/32cfd3765b6afb754562ca97a3b05355 to your computer and use it in GitHub Desktop.
Save scorobogaci/32cfd3765b6afb754562ca97a3b05355 to your computer and use it in GitHub Desktop.
GreetingsBuilderTest
package org.example;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class GreetingsBuilderTest {
@Test
public void testGreeting() {
GreetingsBuilder greetingsBuilder = new GreetingsBuilder("EN");
String greeting = greetingsBuilder.greet();
assertEquals("Hello", greeting);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment