File tree 11 files changed +38
-23
lines changed
src/test/java/simplenlgde
11 files changed +38
-23
lines changed Original file line number Diff line number Diff line change 42
42
<dependency >
43
43
<groupId >org.junit.jupiter</groupId >
44
44
<artifactId >junit-jupiter</artifactId >
45
- <version >RELEASE </version >
45
+ <version >5.9.2 </version >
46
46
<scope >test</scope >
47
47
</dependency >
48
+ <dependency >
49
+ <groupId >org.junit.jupiter</groupId >
50
+ <artifactId >junit-jupiter-api</artifactId >
51
+ <version >5.9.2</version >
52
+ <scope >compile</scope >
53
+ </dependency >
48
54
</dependencies >
49
55
50
56
<distributionManagement >
100
106
<target >7</target >
101
107
</configuration >
102
108
</plugin >
109
+ <plugin >
110
+ <groupId >org.apache.maven.plugins</groupId >
111
+ <artifactId >maven-surefire-plugin</artifactId >
112
+ <version >2.22.0</version >
113
+ <dependencies >
114
+ <dependency >
115
+ <groupId >org.junit.jupiter</groupId >
116
+ <artifactId >junit-jupiter-engine</artifactId >
117
+ <version >5.9.2</version >
118
+ </dependency >
119
+ </dependencies >
120
+ </plugin >
103
121
<!--
104
122
<plugin>
105
123
<groupId>org.apache.maven.plugins</groupId>
Original file line number Diff line number Diff line change 1
- /*
1
+ package simplenlgde ; /*
2
2
* The contents of this file are subject to the Mozilla Public License
3
3
* Version 1.1 (the "License"); you may not use this file except in
4
4
* compliance with the License. You may obtain a copy of the License at
14
14
15
15
import org .junit .jupiter .api .BeforeAll ;
16
16
import org .junit .jupiter .api .Test ;
17
+ import org .junit .jupiter .api .Assertions ;
17
18
import simplenlgde .framework .*;
18
19
import simplenlgde .lexicon .Lexicon ;
19
20
import simplenlgde .realiser .Realiser ;
20
21
import simplenlgde .features .*;
21
22
import simplenlgde .phrasespec .*;
22
23
23
- import org .junit .jupiter .api .Assertions ;
24
-
25
24
public class QuestionTest {
26
25
private static Lexicon lexicon ;
27
26
private static NLGFactory nlgFactory ;
Original file line number Diff line number Diff line change
1
+ package simplenlgde ;
2
+
1
3
import org .junit .jupiter .api .BeforeAll ;
2
4
import org .junit .jupiter .api .Test ;
5
+ import org .junit .jupiter .api .Assertions ;
3
6
import simplenlgde .framework .*;
4
7
import simplenlgde .lexicon .Lexicon ;
5
8
import simplenlgde .realiser .Realiser ;
6
9
import simplenlgde .features .*;
7
10
import simplenlgde .phrasespec .*;
8
11
9
- import org .junit .jupiter .api .Assertions ;
10
-
11
12
public class RealiserTest {
12
13
13
14
private static Lexicon lexicon ;
Original file line number Diff line number Diff line change 1
- /*
1
+ package simplenlgde ; /*
2
2
* The contents of this file are subject to the Mozilla Public License
3
3
* Version 1.1 (the "License"); you may not use this file except in
4
4
* compliance with the License. You may obtain a copy of the License at
14
14
15
15
import org .junit .jupiter .api .BeforeAll ;
16
16
import org .junit .jupiter .api .Test ;
17
+ import org .junit .jupiter .api .Assertions ;
17
18
import simplenlgde .framework .*;
18
19
import simplenlgde .lexicon .Lexicon ;
19
20
import simplenlgde .realiser .Realiser ;
20
21
import simplenlgde .phrasespec .*;
21
22
22
- import org .junit .jupiter .api .Assertions ;
23
-
24
23
public class SaToSTest {
25
24
private static Lexicon lexicon ;
26
25
private static NLGFactory nlgFactory ;
Original file line number Diff line number Diff line change
1
+ package simplenlgde ;
2
+
1
3
import org .junit .jupiter .api .BeforeAll ;
2
4
import org .junit .jupiter .api .Test ;
3
5
import simplenlgde .framework .*;
Original file line number Diff line number Diff line change 1
- package MorphologyTest ;
1
+ package simplenlgde . morphology ;
2
2
3
3
import org .junit .jupiter .api .BeforeAll ;
4
4
import org .junit .jupiter .api .Test ;
5
+ import org .junit .jupiter .api .Assertions ;
5
6
import simplenlgde .framework .*;
6
7
import simplenlgde .lexicon .Lexicon ;
7
8
import simplenlgde .realiser .Realiser ;
8
9
import simplenlgde .features .*;
9
10
import simplenlgde .phrasespec .*;
10
11
11
- import org .junit .jupiter .api .Assertions ;
12
-
13
12
public class AdjectiveInflectionTest {
14
13
15
14
private static Lexicon lexicon ;
Original file line number Diff line number Diff line change 12
12
* Contributor(s): Daniel Braun, Technical University of Munich.
13
13
*/
14
14
15
- package MorphologyTest ;
15
+ package simplenlgde . morphology ;
16
16
17
17
import org .junit .jupiter .api .BeforeAll ;
18
18
import org .junit .jupiter .api .Test ;
19
+ import org .junit .jupiter .api .Assertions ;
19
20
import simplenlgde .framework .*;
20
21
import simplenlgde .lexicon .Lexicon ;
21
22
import simplenlgde .realiser .Realiser ;
22
23
import simplenlgde .phrasespec .*;
23
24
24
- import org .junit .jupiter .api .Assertions ;
25
-
26
25
public class BasewordTest {
27
26
private static Lexicon lexicon ;
28
27
private static NLGFactory nlgFactory ;
Original file line number Diff line number Diff line change 1
- package MorphologyTest ;
1
+ package simplenlgde . morphology ;
2
2
3
3
import org .junit .jupiter .api .BeforeAll ;
4
4
import org .junit .jupiter .api .Test ;
5
+ import org .junit .jupiter .api .Assertions ;
5
6
import simplenlgde .framework .*;
6
7
import simplenlgde .lexicon .Lexicon ;
7
8
import simplenlgde .realiser .Realiser ;
8
9
import simplenlgde .features .*;
9
10
import simplenlgde .phrasespec .*;
10
11
11
- import org .junit .jupiter .api .Assertions ;
12
-
13
12
public class NounInflectionTest {
14
13
15
14
private static Lexicon lexicon ;
Original file line number Diff line number Diff line change 1
- package MorphologyTest ;
1
+ package simplenlgde . morphology ;
2
2
3
3
import org .junit .jupiter .api .BeforeAll ;
4
4
import org .junit .jupiter .api .Test ;
Original file line number Diff line number Diff line change 1
- package SyntaxTest ;
2
- import org .junit .jupiter .api .Assertions ;
1
+ package simplenlgde .syntax ;
3
2
4
3
import org .junit .jupiter .api .BeforeAll ;
5
4
import org .junit .jupiter .api .Test ;
5
+ import org .junit .jupiter .api .Assertions ;
6
6
import simplenlgde .framework .*;
7
7
import simplenlgde .lexicon .Lexicon ;
8
8
import simplenlgde .realiser .Realiser ;
Original file line number Diff line number Diff line change 1
- package SyntaxTest ;
1
+ package simplenlgde . syntax ;
2
2
3
3
import org .junit .jupiter .api .Assertions ;
4
-
5
4
import org .junit .jupiter .api .BeforeAll ;
6
5
import org .junit .jupiter .api .Test ;
7
6
import simplenlgde .framework .*;
You can’t perform that action at this time.
0 commit comments