Skip to content

Package: CucJobStepProperty

CucJobStepProperty

nameinstructionbranchcomplexitylinemethod
CucJobStepProperty()
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%
getExampleValue()
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%
getName()
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%
getType()
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%
getValue()
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%
setExampleValue(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%
setName(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%
setType(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%
setValue(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: /**
16: * Data object used in Gherkin to input Job Step properties.
17: * The data setters intentionally use only cucumber-friendly data types and
18: * generate the resulting Kapua types internally.
19: */
20: public class CucJobStepProperty {
21:
22: private String name;
23: private String type;
24: private String value;
25: private String exampleValue;
26:
27: public String getName() {
28: return name;
29: }
30:
31: public void setName(String name) {
32: this.name = name;
33: }
34:
35: public String getType() {
36: return type;
37: }
38:
39: public void setType(String type) {
40: this.type = type;
41: }
42:
43: public String getValue() {
44: return value;
45: }
46:
47: public void setValue(String value) {
48: this.value = value;
49: }
50:
51: public String getExampleValue() {
52: return exampleValue;
53: }
54:
55: public void setExampleValue(String exampleValue) {
56: this.exampleValue = exampleValue;
57: }
58: }