1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.maven.execution;
20
21 import java.util.List;
22
23 import org.apache.maven.project.MavenProject;
24 import org.junit.jupiter.api.Test;
25
26 import static org.hamcrest.MatcherAssert.assertThat;
27 import static org.hamcrest.Matchers.empty;
28 import static org.hamcrest.Matchers.is;
29 import static org.junit.jupiter.api.Assertions.assertNotNull;
30 import static org.junit.jupiter.api.Assertions.assertNotSame;
31
32
33
34 class DefaultMavenExecutionTest {
35 @Test
36 void testCopyDefault() {
37 MavenExecutionRequest original = new DefaultMavenExecutionRequest();
38 MavenExecutionRequest copy = DefaultMavenExecutionRequest.copy(original);
39 assertNotNull(copy);
40 assertNotSame(copy, original);
41 }
42
43 @Test
44 void testResultWithNullTopologicallySortedProjectsIsEmptyList() {
45 MavenExecutionResult result = new DefaultMavenExecutionResult();
46 result.setTopologicallySortedProjects(null);
47 List<MavenProject> projects = result.getTopologicallySortedProjects();
48 assertNotNull(projects);
49 assertThat(projects, is(empty()));
50 }
51 }