1   package org.apache.maven.surefire.its;
2   
3   public class ITSuiteResults
4   {
5       private int total, errors, failures, skipped;
6   
7       public ITSuiteResults( int total, int errors, int failures, int skipped )
8       {
9           this.total = total;
10          this.errors = errors;
11          this.failures = failures;
12          this.skipped = skipped;
13      }
14  
15      public int getTotal()
16      {
17          return total;
18      }
19  
20      public void setTotal( int total )
21      {
22          this.total = total;
23      }
24  
25      public int getErrors()
26      {
27          return errors;
28      }
29  
30      public void setErrors( int errors )
31      {
32          this.errors = errors;
33      }
34  
35      public int getFailures()
36      {
37          return failures;
38      }
39  
40      public void setFailures( int failures )
41      {
42          this.failures = failures;
43      }
44  
45      public int getSkipped()
46      {
47          return skipped;
48      }
49  
50      public void setSkipped( int skipped )
51      {
52          this.skipped = skipped;
53      }
54      
55  }