Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
FailsafeSummary |
|
| 2.4285714285714284;2.429 |
1 | /* | |
2 | =================== DO NOT EDIT THIS FILE ==================== | |
3 | Generated by Modello 1.4.1 on 2011-06-14 21:30:37, | |
4 | any modifications will be overwritten. | |
5 | ============================================================== | |
6 | */ | |
7 | ||
8 | package org.apache.maven.surefire.failsafe.model; | |
9 | ||
10 | /** | |
11 | * | |
12 | * Describes the results of executing tests | |
13 | * . | |
14 | * | |
15 | * @version $Revision$ $Date$ | |
16 | */ | |
17 | 0 | public class FailsafeSummary |
18 | implements java.io.Serializable | |
19 | { | |
20 | ||
21 | //--------------------------/ | |
22 | //- Class/Member Variables -/ | |
23 | //--------------------------/ | |
24 | ||
25 | /** | |
26 | * The surefire result code. | |
27 | */ | |
28 | 0 | private int result = 0; |
29 | ||
30 | /** | |
31 | * The exception that caused surefire to bomb out. | |
32 | */ | |
33 | private String exception; | |
34 | ||
35 | /** | |
36 | * Field modelEncoding. | |
37 | */ | |
38 | 0 | private String modelEncoding = "UTF-8"; |
39 | ||
40 | ||
41 | //-----------/ | |
42 | //- Methods -/ | |
43 | //-----------/ | |
44 | ||
45 | /** | |
46 | * Get the exception that caused surefire to bomb out. | |
47 | * | |
48 | * @return String | |
49 | */ | |
50 | public String getException() | |
51 | { | |
52 | 0 | return this.exception; |
53 | } //-- String getException() | |
54 | ||
55 | /** | |
56 | * Get the modelEncoding field. | |
57 | * | |
58 | * @return String | |
59 | */ | |
60 | public String getModelEncoding() | |
61 | { | |
62 | 0 | return this.modelEncoding; |
63 | } //-- String getModelEncoding() | |
64 | ||
65 | /** | |
66 | * Get the surefire result code. | |
67 | * | |
68 | * @return int | |
69 | */ | |
70 | public int getResult() | |
71 | { | |
72 | 0 | return this.result; |
73 | } //-- int getResult() | |
74 | ||
75 | /** | |
76 | * Set the exception that caused surefire to bomb out. | |
77 | * | |
78 | * @param exception | |
79 | */ | |
80 | public void setException( String exception ) | |
81 | { | |
82 | 0 | this.exception = exception; |
83 | 0 | } //-- void setException( String ) |
84 | ||
85 | /** | |
86 | * Set the modelEncoding field. | |
87 | * | |
88 | * @param modelEncoding | |
89 | */ | |
90 | public void setModelEncoding( String modelEncoding ) | |
91 | { | |
92 | 0 | this.modelEncoding = modelEncoding; |
93 | 0 | } //-- void setModelEncoding( String ) |
94 | ||
95 | /** | |
96 | * Set the surefire result code. | |
97 | * | |
98 | * @param result | |
99 | */ | |
100 | public void setResult( int result ) | |
101 | { | |
102 | 0 | this.result = result; |
103 | 0 | } //-- void setResult( int ) |
104 | ||
105 | ||
106 | /** | |
107 | * Merges the summary result with this summary result. | |
108 | * | |
109 | * @param summary The summary to merge. | |
110 | * @since 2.6 | |
111 | */ | |
112 | public void merge( FailsafeSummary summary ) | |
113 | { | |
114 | 0 | switch ( this.result ) |
115 | { | |
116 | case org.apache.maven.surefire.booter.ProviderConfiguration.TESTS_SUCCEEDED_EXIT_CODE: | |
117 | 0 | this.result = summary.result; |
118 | 0 | break; |
119 | case org.apache.maven.surefire.booter.ProviderConfiguration.NO_TESTS_EXIT_CODE: | |
120 | 0 | switch ( summary.result ) |
121 | { | |
122 | case org.apache.maven.surefire.booter.ProviderConfiguration.TESTS_SUCCEEDED_EXIT_CODE: | |
123 | 0 | break; |
124 | case org.apache.maven.surefire.booter.ProviderConfiguration.NO_TESTS_EXIT_CODE: | |
125 | 0 | break; |
126 | case org.apache.maven.surefire.booter.ProviderConfiguration.TESTS_FAILED_EXIT_CODE: | |
127 | 0 | this.result = summary.result; |
128 | 0 | break; |
129 | default: | |
130 | 0 | this.result = summary.result; |
131 | 0 | break; |
132 | } | |
133 | break; | |
134 | case org.apache.maven.surefire.booter.ProviderConfiguration.TESTS_FAILED_EXIT_CODE: | |
135 | 0 | switch ( summary.result ) |
136 | { | |
137 | case org.apache.maven.surefire.booter.ProviderConfiguration.TESTS_SUCCEEDED_EXIT_CODE: | |
138 | 0 | break; |
139 | case org.apache.maven.surefire.booter.ProviderConfiguration.NO_TESTS_EXIT_CODE: | |
140 | 0 | break; |
141 | case org.apache.maven.surefire.booter.ProviderConfiguration.TESTS_FAILED_EXIT_CODE: | |
142 | 0 | break; |
143 | default: | |
144 | 0 | this.result = summary.result; |
145 | 0 | break; |
146 | } | |
147 | break; | |
148 | default: | |
149 | break; | |
150 | } | |
151 | 0 | if ( this.exception == null ) |
152 | { | |
153 | 0 | this.exception = summary.exception; |
154 | } | |
155 | 0 | } |
156 | ||
157 | } |