| 12345678910111213141516171819202122232425 |
-
-
- import 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
- {
-
- @Test
- public void testWord() {
- Scrabble scrabble = new Scrabble();
- int actual = scrabble.score("zero");
- int expected = 13;
- Assert.assertEquals(actual, expected);
- }
- }
|