Clover icon

java-junit-xml-merger 1.0.1

  1. Project Clover database Mi Okt 4 2017 15:38:24 MESZ
  2. Package io.codeclou.java.junit.xml.merger.model

File TestSuite.java

 

Coverage histogram

../../../../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
14
14
1
94
53
14
1
1
14
1

Classes

Class Line # Actions
TestSuite 28 14 0% 14 0
1.0100%
 

Contributing tests

This file is covered by 5 tests. .

Source view

1    /*
2    * MIT License
3    *
4    * Copyright (c) 2017 Bernhard Grünewaldt
5    *
6    * Permission is hereby granted, free of charge, to any person obtaining a copy
7    * of this software and associated documentation files (the "Software"), to deal
8    * in the Software without restriction, including without limitation the rights
9    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10    * copies of the Software, and to permit persons to whom the Software is
11    * furnished to do so, subject to the following conditions:
12    *
13    * The above copyright notice and this permission notice shall be included in all
14    * copies or substantial portions of the Software.
15    *
16    * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17    * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18    * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19    * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20    * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21    * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22    * SOFTWARE.
23    */
24    package io.codeclou.java.junit.xml.merger.model;
25   
26    import org.w3c.dom.Node;
27   
 
28    public class TestSuite {
29   
30    private Long tests;
31    private Long failures;
32    private Long errors;
33    private Long skipped;
34    private String name;
35    private Double time;
36   
37    private Node xml;
38   
 
39  10 toggle public Long getTests() {
40  10 return tests;
41    }
42   
 
43  8 toggle public void setTests(Long tests) {
44  8 this.tests = tests;
45    }
46   
 
47  10 toggle public Long getFailures() {
48  10 return failures;
49    }
50   
 
51  8 toggle public void setFailures(Long failures) {
52  8 this.failures = failures;
53    }
54   
 
55  3 toggle public Long getErrors() {
56  3 return errors;
57    }
58   
 
59  8 toggle public void setErrors(Long errors) {
60  8 this.errors = errors;
61    }
62   
 
63  3 toggle public Long getSkipped() {
64  3 return skipped;
65    }
66   
 
67  8 toggle public void setSkipped(Long skipped) {
68  8 this.skipped = skipped;
69    }
70   
 
71  3 toggle public String getName() {
72  3 return name;
73    }
74   
 
75  8 toggle public void setName(String name) {
76  8 this.name = name;
77    }
78   
 
79  10 toggle public Double getTime() {
80  10 return time;
81    }
82   
 
83  8 toggle public void setTime(Double time) {
84  8 this.time = time;
85    }
86   
 
87  8 toggle public Node getXml() {
88  8 return xml;
89    }
90   
 
91  8 toggle public void setXml(Node xml) {
92  8 this.xml = xml;
93    }
94    }