Record Class TestResultDto
java.lang.Object
java.lang.Record
com.winchesters.devopsify.dto.response.TestResultDto
-
Constructor Summary
ConstructorsConstructorDescriptionTestResultDto(int testsRun, int failures, int errors, int skipped) Creates an instance of aTestResultDtorecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.interrors()Returns the value of theerrorsrecord component.intfailures()Returns the value of thefailuresrecord component.final inthashCode()Returns a hash code value for this object.intskipped()Returns the value of theskippedrecord component.inttestsRun()Returns the value of thetestsRunrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
TestResultDto
public TestResultDto(int testsRun, int failures, int errors, int skipped) Creates an instance of aTestResultDtorecord class.- Parameters:
testsRun- the value for thetestsRunrecord componentfailures- the value for thefailuresrecord componenterrors- the value for theerrorsrecord componentskipped- the value for theskippedrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
testsRun
public int testsRun()Returns the value of thetestsRunrecord component.- Returns:
- the value of the
testsRunrecord component
-
failures
public int failures()Returns the value of thefailuresrecord component.- Returns:
- the value of the
failuresrecord component
-
errors
public int errors()Returns the value of theerrorsrecord component.- Returns:
- the value of the
errorsrecord component
-
skipped
public int skipped()Returns the value of theskippedrecord component.- Returns:
- the value of the
skippedrecord component
-