Skip to content

Package: CucMessageRange

CucMessageRange

nameinstructionbranchcomplexitylinemethod
CucMessageRange()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
getClientId()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
getCount()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
getEndDate()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
getStartDate()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
getTopic()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
setClientId(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
setCount(Integer)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
setEndDate(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
setStartDate(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
setTopic(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2017, 2022 Eurotech and/or its affiliates and others
3: *
4: * This program and the accompanying materials are made
5: * available under the terms of the Eclipse Public License 2.0
6: * which is available at https://www.eclipse.org/legal/epl-2.0/
7: *
8: * SPDX-License-Identifier: EPL-2.0
9: *
10: * Contributors:
11: * Eurotech
12: *******************************************************************************/
13: package org.eclipse.kapua.qa.common.cucumber;
14:
15: public class CucMessageRange {
16:
17: private String topic;
18:
19: private String clientId;
20:
21: private String startDate;
22:
23: private String endDate;
24:
25: private Integer count;
26:
27: public String getTopic() {
28: return topic;
29: }
30:
31: public void setTopic(String topic) {
32: this.topic = topic;
33: }
34:
35: public String getClientId() {
36: return clientId;
37: }
38:
39: public void setClientId(String clientId) {
40: this.clientId = clientId;
41: }
42:
43: public String getStartDate() {
44: return startDate;
45: }
46:
47: public void setStartDate(String startDate) {
48: this.startDate = startDate;
49: }
50:
51: public String getEndDate() {
52: return endDate;
53: }
54:
55: public void setEndDate(String endDate) {
56: this.endDate = endDate;
57: }
58:
59: public Integer getCount() {
60: return count;
61: }
62:
63: public void setCount(Integer count) {
64: this.count = count;
65: }
66:
67: }