com.smartbear.visualtest.models.api.Aggregate Maven / Gradle / Ivy
The newest version!
package com.smartbear.visualtest.models.api;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/**
* The class "Aggregate" has three Integer fields representing the number of passed, failed, and other
* items. It also includes getter and setter methods, as well as a no-argument constructor and a
* constructor that takes in all three Integer fields as arguments.
*/
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public class Aggregate {
Integer passed;
Integer failed;
Integer other;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy