File tree Expand file tree Collapse file tree 6 files changed +10
-5
lines changed
maven-plugin-report-plugin/src/test/java/org/apache/maven/plugin/plugin/report
maven-plugin-tools-annotations
maven-plugin-tools-api/src/test/java/org/apache/maven/tools/plugin/util
maven-plugin-tools-generators/src/test/java/org/apache/maven/tools/plugin/generator Expand file tree Collapse file tree 6 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 24
24
import org .apache .maven .plugin .logging .SystemStreamLog ;
25
25
import org .junit .jupiter .api .Test ;
26
26
27
- import static org .junit .jupiter .api .Assertions .* ;
27
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
28
28
29
29
class GoalRendererTest {
30
30
Original file line number Diff line number Diff line change 30
30
<name >Maven Plugin Tool for Java with Annotations</name >
31
31
<description >Descriptor extractor for plugins written in Java with Java annotations.</description >
32
32
33
+ <properties >
34
+ <!-- Disabled for this project, because the styleguide prevents some functional tests -->
35
+ <checkstyle .includeTestSourceDirectory>false</checkstyle .includeTestSourceDirectory>
36
+ </properties >
37
+
33
38
<dependencies >
34
39
<!-- maven -->
35
40
<dependency >
Original file line number Diff line number Diff line change 32
32
public class TestUtils {
33
33
34
34
@ Test
35
- void testDirnameFunction_METATEST () throws UnsupportedEncodingException {
35
+ void testDirnameFunctionMetatest () throws UnsupportedEncodingException {
36
36
String classname = getClass ().getName ().replace ('.' , '/' ) + ".class" ;
37
37
String basedir = TestUtils .dirname (classname );
38
38
Original file line number Diff line number Diff line change 26
26
class HtmlToPlainTextConverterTest {
27
27
private final Converter converter ;
28
28
29
- public HtmlToPlainTextConverterTest () {
29
+ private HtmlToPlainTextConverterTest () {
30
30
converter = new HtmlToPlainTextConverter ();
31
31
}
32
32
Original file line number Diff line number Diff line change 49
49
public class AntMojoDescriptorExtractorTest {
50
50
51
51
@ Test
52
- void testBasicMojoExtraction_CheckInjectedParametersAndRequirements ()
52
+ void testBasicMojoExtractionCheckInjectedParametersAndRequirements ()
53
53
throws InvalidPluginDescriptorException , ExtractionException {
54
54
Map <String , Set <File >> scriptMap = buildTestMap ("basic" );
55
55
Original file line number Diff line number Diff line change 23
23
<parent >
24
24
<groupId >org.apache.maven</groupId >
25
25
<artifactId >maven-parent</artifactId >
26
- <version >43 </version >
26
+ <version >44 </version >
27
27
<relativePath />
28
28
</parent >
29
29
You can’t perform that action at this time.
0 commit comments