
com.aventstack.chaintest.domain.RunStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chaintest-core Show documentation
Show all versions of chaintest-core Show documentation
Core Java client library for ChainTest framework
The newest version!
package com.aventstack.chaintest.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonIgnoreProperties(ignoreUnknown = true)
public class RunStats extends Stat {
public RunStats(final int depth) {
setDepth((depth));
}
@Override
public void update(final Test test) {
super.update(test);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy