|
1 | | -package aima.test.core.unit.nlp; |
2 | | - |
3 | | -import org.junit.runner.RunWith; |
4 | | -import org.junit.runners.Suite; |
5 | | - |
6 | | -import aima.test.core.unit.agent.impl.aprog.simplerule.RuleTest; |
7 | | -import aima.test.core.unit.nlp.parse.CYKParseTest; |
8 | | -import aima.test.core.unit.nlp.parse.GrammarTest; |
9 | | -import aima.test.core.unit.nlp.parse.LexiconTest; |
10 | | -import aima.test.core.unit.nlp.parse.ProbCNFGrammarTest; |
11 | | -import aima.test.core.unit.nlp.parse.ProbContextFreeGrammarTest; |
12 | | -import aima.test.core.unit.nlp.rank.HITSTest; |
13 | | -import aima.test.core.unit.nlp.rank.PagesDatasetTest; |
14 | | -import aima.test.core.unit.nlp.rank.WikiLinkFinderTest; |
15 | | - |
16 | | -@RunWith(Suite.class) |
17 | | -@Suite.SuiteClasses({ HITSTest.class, PagesDatasetTest.class, WikiLinkFinderTest.class, CYKParseTest.class, |
18 | | - GrammarTest.class, LexiconTest.class, ProbCNFGrammarTest.class, ProbContextFreeGrammarTest.class, |
19 | | - RuleTest.class }) |
20 | | -public class NLPTestSuite { |
21 | | -} |
| 1 | +package aima.test.core.unit.nlp; |
| 2 | + |
| 3 | +import org.junit.runner.RunWith; |
| 4 | +import org.junit.runners.Suite; |
| 5 | + |
| 6 | +import aima.test.core.unit.agent.impl.aprog.simplerule.RuleTest; |
| 7 | +import aima.test.core.unit.nlp.parse.CYKParseTest; |
| 8 | +import aima.test.core.unit.nlp.parse.GrammarTest; |
| 9 | +import aima.test.core.unit.nlp.parse.LexiconTest; |
| 10 | +import aima.test.core.unit.nlp.parse.ProbCNFGrammarTest; |
| 11 | +import aima.test.core.unit.nlp.parse.ProbContextFreeGrammarTest; |
| 12 | +import aima.test.core.unit.nlp.rank.HITSTest; |
| 13 | +import aima.test.core.unit.nlp.rank.PagesDatasetTest; |
| 14 | +import aima.test.core.unit.nlp.rank.WikiLinkFinderTest; |
| 15 | + |
| 16 | +@RunWith(Suite.class) |
| 17 | +@Suite.SuiteClasses({ HITSTest.class, PagesDatasetTest.class, WikiLinkFinderTest.class, CYKParseTest.class, |
| 18 | + GrammarTest.class, LexiconTest.class, ProbCNFGrammarTest.class, ProbContextFreeGrammarTest.class, |
| 19 | + RuleTest.class }) |
| 20 | +public class NLPTestSuite { |
| 21 | +} |
0 commit comments