Class ProjectTestsBean
- java.lang.Object
-
- jetbrains.buildServer.web.problems.ProjectTestsBean
-
- Direct Known Subclasses:
ProjectTestsBean.RootProjectTestsBean
public class ProjectTestsBean extends Object
This class represents a group of tests which belong to a particular project.- Author:
- kir
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ProjectTestsBean.RootProjectTestsBean
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<SBuildType,TestGroupBean>
getBuildTypeGroups()
SProject
getProject()
List<ProjectTestsBean>
getSubProjects()
TestGroupBean
getTestGroup()
-
-
-
Method Detail
-
getProject
@Nullable public SProject getProject()
-
getTestGroup
@NotNull public TestGroupBean getTestGroup()
- Returns:
- test group which includes all tests in this project and its subprojects
-
getBuildTypeGroups
@NotNull public Map<SBuildType,TestGroupBean> getBuildTypeGroups()
- Returns:
- tests which belong to direct subconfigurations of this project
-
getSubProjects
@NotNull public List<ProjectTestsBean> getSubProjects()
- Returns:
- test data for the subprojects of this project
-
-