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.Test;
25
26 import static org.hamcrest.Matchers.empty;
27 import static org.hamcrest.Matchers.is;
28 import static org.junit.Assert.assertNotNull;
29 import static org.junit.Assert.assertNotSame;
30 import static org.junit.Assert.assertThat;
31
32
33
34
35 public class DefaultMavenExecutionTest {
36 @Test
37 public void testCopyDefault() {
38 MavenExecutionRequest original = new DefaultMavenExecutionRequest();
39 MavenExecutionRequest copy = DefaultMavenExecutionRequest.copy(original);
40 assertNotNull(copy);
41 assertNotSame(copy, original);
42 }
43
44 @Test
45 public void testResultWithNullTopologicallySortedProjectsIsEmptyList() {
46 MavenExecutionResult result = new DefaultMavenExecutionResult();
47 result.setTopologicallySortedProjects(null);
48 List<MavenProject> projects = result.getTopologicallySortedProjects();
49 assertNotNull(projects);
50 assertThat(projects, is(empty()));
51 }
52 }