-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGrammarTest.java
More file actions
44 lines (36 loc) · 894 Bytes
/
GrammarTest.java
File metadata and controls
44 lines (36 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package sentenceGenerator;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
/**
* @author <your name goes here>
*/
public class GrammarTest {
/**
* @throws java.lang.Exception
*/
@Before
public void setUp() throws Exception {
}
/**
* Test method for {@link sentenceGenerator.Grammar#Grammar()}.
*/
@Test
public final void testGrammar() {
fail("Not yet implemented"); // TODO
}
/**
* Test method for {@link sentenceGenerator.Grammar#addRule(java.lang.String)}.
*/
@Test
public final void testAddRule() {
fail("Not yet implemented"); // TODO
}
/**
* Test method for {@link sentenceGenerator.Grammar#getDefinitions(java.lang.String)}.
*/
@Test
public final void testGetDefinitions() {
fail("Not yet implemented"); // TODO
}
}