|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use TestAutomationProject | |
|---|---|
| org.squashtest.csp.tm.domain.project | |
| org.squashtest.csp.tm.domain.testautomation | This package contains all the relevant concepts around test automation. |
| org.squashtest.csp.tm.internal.repository | |
| org.squashtest.csp.tm.internal.repository.hibernate | This file contains Hibernate named queries used by DAOs. |
| org.squashtest.csp.tm.internal.service.project | |
| org.squashtest.csp.tm.internal.testautomation.service | |
| org.squashtest.csp.tm.internal.testautomation.tasks | |
| org.squashtest.csp.tm.service | |
| org.squashtest.csp.tm.service.project | |
| org.squashtest.csp.tm.testautomation.model | |
| org.squashtest.csp.tm.testautomation.spi | |
| Uses of TestAutomationProject in org.squashtest.csp.tm.domain.project |
|---|
| Methods in org.squashtest.csp.tm.domain.project that return types with arguments of type TestAutomationProject | |
|---|---|
Collection<TestAutomationProject> |
GenericProject.getTestAutomationProjects()
|
| Methods in org.squashtest.csp.tm.domain.project with parameters of type TestAutomationProject | |
|---|---|
void |
GenericProject.bindTestAutomationProject(TestAutomationProject project)
will add a TestAutomationProject if it wasn't added already, or won't do anything if it was already bound to this. |
void |
GenericProject.unbindTestAutomationProject(TestAutomationProject project)
|
| Uses of TestAutomationProject in org.squashtest.csp.tm.domain.testautomation |
|---|
| Methods in org.squashtest.csp.tm.domain.testautomation that return TestAutomationProject | |
|---|---|
TestAutomationProject |
AutomatedTest.getProject()
|
TestAutomationProject |
TestAutomationProject.newWithName(String name)
|
TestAutomationProject |
TestAutomationProject.newWithServer(TestAutomationServer server)
|
| Methods in org.squashtest.csp.tm.domain.testautomation with parameters of type TestAutomationProject | |
|---|---|
AutomatedTest |
AutomatedTest.newWithProject(TestAutomationProject project)
|
| Constructors in org.squashtest.csp.tm.domain.testautomation with parameters of type TestAutomationProject | |
|---|---|
AutomatedTest(String name,
TestAutomationProject project)
|
|
| Uses of TestAutomationProject in org.squashtest.csp.tm.internal.repository |
|---|
| Methods in org.squashtest.csp.tm.internal.repository that return TestAutomationProject | |
|---|---|
TestAutomationProject |
TestAutomationProjectDao.findByExample(TestAutomationProject example)
Given a detached (or even attached) TestAutomationProject example, will fetch a TestAutomationProject
having the same characteristics. |
TestAutomationProject |
TestAutomationProjectDao.findById(Long projectId)
|
TestAutomationProject |
TestAutomationProjectDao.uniquePersist(TestAutomationProject newProject)
Will persist a TestAutomationProject if really new, or return the existing instance if not. |
| Methods in org.squashtest.csp.tm.internal.repository that return types with arguments of type TestAutomationProject | |
|---|---|
List<TestAutomationProject> |
TestAutomationServerDao.findAllHostedProjects(long serverId)
return all the projects that the given server hosts. |
List<TestAutomationProject> |
GenericProjectDao.findBoundTestAutomationProjects(long id)
|
| Methods in org.squashtest.csp.tm.internal.repository with parameters of type TestAutomationProject | |
|---|---|
TestAutomationProject |
TestAutomationProjectDao.findByExample(TestAutomationProject example)
Given a detached (or even attached) TestAutomationProject example, will fetch a TestAutomationProject
having the same characteristics. |
void |
TestAutomationProjectDao.persist(TestAutomationProject newProject)
Will persist a new TestAutomationProject. |
TestAutomationProject |
TestAutomationProjectDao.uniquePersist(TestAutomationProject newProject)
Will persist a TestAutomationProject if really new, or return the existing instance if not. |
| Uses of TestAutomationProject in org.squashtest.csp.tm.internal.repository.hibernate |
|---|
| Methods in org.squashtest.csp.tm.internal.repository.hibernate that return TestAutomationProject | |
|---|---|
TestAutomationProject |
HibernateTestAutomationProjectDao.findByExample(TestAutomationProject example)
|
TestAutomationProject |
HibernateTestAutomationProjectDao.findById(Long id)
|
TestAutomationProject |
HibernateTestAutomationProjectDao.uniquePersist(TestAutomationProject newProject)
|
| Methods in org.squashtest.csp.tm.internal.repository.hibernate that return types with arguments of type TestAutomationProject | |
|---|---|
List<TestAutomationProject> |
HibernateTestAutomationServerDao.findAllHostedProjects(long serverId)
|
| Methods in org.squashtest.csp.tm.internal.repository.hibernate with parameters of type TestAutomationProject | |
|---|---|
TestAutomationProject |
HibernateTestAutomationProjectDao.findByExample(TestAutomationProject example)
|
void |
HibernateTestAutomationProjectDao.persist(TestAutomationProject newProject)
|
TestAutomationProject |
HibernateTestAutomationProjectDao.uniquePersist(TestAutomationProject newProject)
|
| Uses of TestAutomationProject in org.squashtest.csp.tm.internal.service.project |
|---|
| Methods in org.squashtest.csp.tm.internal.service.project that return types with arguments of type TestAutomationProject | |
|---|---|
List<TestAutomationProject> |
CustomGenericProjectManagerImpl.findBoundTestAutomationProjects(long projectId)
|
| Methods in org.squashtest.csp.tm.internal.service.project with parameters of type TestAutomationProject | |
|---|---|
void |
CustomGenericProjectManagerImpl.bindTestAutomationProject(long projectId,
TestAutomationProject taProject)
|
| Uses of TestAutomationProject in org.squashtest.csp.tm.internal.testautomation.service |
|---|
| Methods in org.squashtest.csp.tm.internal.testautomation.service that return TestAutomationProject | |
|---|---|
TestAutomationProject |
TestAutomationManagementServiceImpl.findProjectById(long projectId)
|
TestAutomationProject |
InsecureTestAutomationManagementService.findProjectById(long projectId)
|
TestAutomationProject |
TestAutomationManagementServiceImpl.persistOrAttach(TestAutomationProject newProject)
|
TestAutomationProject |
InsecureTestAutomationManagementService.persistOrAttach(TestAutomationProject newProject)
Will persist the supplied remote TestAutomationProject. |
| Methods in org.squashtest.csp.tm.internal.testautomation.service that return types with arguments of type TestAutomationProject | |
|---|---|
Collection<TestAutomationProject> |
TestAutomationManagementServiceImpl.listProjectsOnServer(TestAutomationServer server)
|
Collection<TestAutomationProject> |
TestAutomationManagementServiceImpl.listProjectsOnServer(URL serverURL,
String login,
String password)
|
| Methods in org.squashtest.csp.tm.internal.testautomation.service with parameters of type TestAutomationProject | |
|---|---|
void |
TestAutomationManagementServiceImpl.fetchAllResultURL(TestAutomationProject project,
AutomatedSuite suite)
|
void |
InsecureTestAutomationManagementService.fetchAllResultURL(TestAutomationProject project,
AutomatedSuite suite)
Will (attempt to) retrieve the result url for all the executions that belongs to a given automated suite, and of which tests belongs to a given project. |
TestAutomationProject |
TestAutomationManagementServiceImpl.persistOrAttach(TestAutomationProject newProject)
|
TestAutomationProject |
InsecureTestAutomationManagementService.persistOrAttach(TestAutomationProject newProject)
Will persist the supplied remote TestAutomationProject. |
| Method parameters in org.squashtest.csp.tm.internal.testautomation.service with type arguments of type TestAutomationProject | |
|---|---|
Collection<TestAutomationProjectContent> |
TestAutomationManagementServiceImpl.listTestsInProjects(Collection<TestAutomationProject> projects)
|
| Uses of TestAutomationProject in org.squashtest.csp.tm.internal.testautomation.tasks |
|---|
| Constructors in org.squashtest.csp.tm.internal.testautomation.tasks with parameters of type TestAutomationProject | |
|---|---|
FetchTestListTask(TestAutomationConnectorRegistry connectorRegistry,
TestAutomationProject project)
|
|
| Uses of TestAutomationProject in org.squashtest.csp.tm.service |
|---|
| Methods in org.squashtest.csp.tm.service that return types with arguments of type TestAutomationProject | |
|---|---|
Collection<TestAutomationProject> |
TestAutomationFinderService.listProjectsOnServer(TestAutomationServer server)
see TestAutomationFinderService.listProjectsOnServer(URL, String, String), using a TestAutomationServer for argument |
Collection<TestAutomationProject> |
TestAutomationFinderService.listProjectsOnServer(URL serverURL,
String login,
String password)
Given the URL of the test automation server, and the credentials required to connect it, will return the list of project currently available on it. |
| Method parameters in org.squashtest.csp.tm.service with type arguments of type TestAutomationProject | |
|---|---|
Collection<TestAutomationProjectContent> |
TestAutomationFinderService.listTestsInProjects(Collection<TestAutomationProject> projects)
Given a collection of TestAutomationProject, will return the aggregated list of AutomatedTest
paired with their owner project. |
| Uses of TestAutomationProject in org.squashtest.csp.tm.service.project |
|---|
| Methods in org.squashtest.csp.tm.service.project that return types with arguments of type TestAutomationProject | |
|---|---|
List<TestAutomationProject> |
CustomGenericProjectFinder.findBoundTestAutomationProjects(long projectId)
|
| Methods in org.squashtest.csp.tm.service.project with parameters of type TestAutomationProject | |
|---|---|
void |
CustomGenericProjectManager.bindTestAutomationProject(long TMprojectId,
TestAutomationProject TAproject)
Will bind the TM project to a TA project. |
| Uses of TestAutomationProject in org.squashtest.csp.tm.testautomation.model |
|---|
| Methods in org.squashtest.csp.tm.testautomation.model that return TestAutomationProject | |
|---|---|
TestAutomationProject |
TestAutomationProjectContent.getProject()
|
| Constructors in org.squashtest.csp.tm.testautomation.model with parameters of type TestAutomationProject | |
|---|---|
TestAutomationProjectContent(TestAutomationProject project,
Collection<AutomatedTest> tests)
|
|
TestAutomationProjectContent(TestAutomationProject project,
Exception knownProblem)
|
|
| Uses of TestAutomationProject in org.squashtest.csp.tm.testautomation.spi |
|---|
| Methods in org.squashtest.csp.tm.testautomation.spi that return types with arguments of type TestAutomationProject | |
|---|---|
Collection<TestAutomationProject> |
TestAutomationConnector.listProjectsOnServer(TestAutomationServer server)
Given a server (that contains everything you need to connect it), returns the collection of TestAutomationProject
that it hosts. |
| Methods in org.squashtest.csp.tm.testautomation.spi with parameters of type TestAutomationProject | |
|---|---|
Collection<AutomatedTest> |
TestAutomationConnector.listTestsInProject(TestAutomationProject project)
Given a project (that contains everything you need to connect it), returns the collection of AutomatedTest
that it contains |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||