File tree Expand file tree Collapse file tree
plugins/storage/volume/solidfire
test/org/apache/cloudstack/storage/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6868 <defaultGoal >install</defaultGoal >
6969 <sourceDirectory >src</sourceDirectory >
7070 <testSourceDirectory >test</testSourceDirectory >
71+ <plugins >
72+ <plugin >
73+ <artifactId >maven-surefire-plugin</artifactId >
74+ <configuration >
75+ <skipTests >true</skipTests >
76+ </configuration >
77+ <executions >
78+ <execution >
79+ <phase >integration-test</phase >
80+ <goals >
81+ <goal >test</goal >
82+ </goals >
83+ </execution >
84+ </executions >
85+ </plugin >
86+ </plugins >
7187 </build >
7288</project >
Original file line number Diff line number Diff line change 107107 </plugin >
108108 <plugin >
109109 <artifactId >maven-surefire-plugin</artifactId >
110+ <configuration >
111+ <skipTests >true</skipTests >
112+ </configuration >
110113 <executions >
111114 <execution >
112115 <phase >integration-test</phase >
Original file line number Diff line number Diff line change 4646 <defaultGoal >install</defaultGoal >
4747 <sourceDirectory >src</sourceDirectory >
4848 <testSourceDirectory >test</testSourceDirectory >
49+ <plugins >
50+ <plugin >
51+ <artifactId >maven-surefire-plugin</artifactId >
52+ <configuration >
53+ <skipTests >true</skipTests >
54+ </configuration >
55+ <executions >
56+ <execution >
57+ <phase >integration-test</phase >
58+ <goals >
59+ <goal >test</goal >
60+ </goals >
61+ </execution >
62+ </executions >
63+ </plugin >
64+ </plugins >
4965 </build >
5066</project >
Original file line number Diff line number Diff line change 3636 <defaultGoal >install</defaultGoal >
3737 <sourceDirectory >src</sourceDirectory >
3838 <testSourceDirectory >test</testSourceDirectory >
39+ <plugins >
40+ <plugin >
41+ <artifactId >maven-surefire-plugin</artifactId >
42+ <configuration >
43+ <skipTests >true</skipTests >
44+ </configuration >
45+ <executions >
46+ <execution >
47+ <phase >integration-test</phase >
48+ <goals >
49+ <goal >test</goal >
50+ </goals >
51+ </execution >
52+ </executions >
53+ </plugin >
54+ </plugins >
3955 </build >
4056</project >
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ public void setUp() {
112112 results .add (host );
113113 Mockito .when (hostDao .listAll ()).thenReturn (results );
114114 Mockito .when (hostDao .findHypervisorHostInCluster (Mockito .anyLong ())).thenReturn (results );
115- CreateObjectAnswer createVolumeFromImageAnswer = new CreateObjectAnswer (null ,UUID .randomUUID ().toString ());
115+ CreateObjectAnswer createVolumeFromImageAnswer = new CreateObjectAnswer (null ,UUID .randomUUID ().toString (), null );
116116
117117 try {
118118 Mockito .when (agentMgr .send (Mockito .anyLong (), Mockito .any (CreateVolumeFromBaseImageCommand .class ))).thenReturn (createVolumeFromImageAnswer );
You can’t perform that action at this time.
0 commit comments