import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; /** * The test class ScrabbleTest. * * @author (your name) * @version (a version number or a date) */ public class ScrabbleTest { @Before public void setUp() { Scrabble scrabble = new Scrabble(); } @Test public void testScore(){ int expected = 8; int actual = Scrabble.score("Tyler"); assertEquals(expected, actual); } @Test public void testScore2(){ int expected = 10; int actual = Scrabble.score("book"); assertEquals(expected, actual); } }