Uses of Class
org.squashtest.csp.tm.domain.testautomation.AutomatedTest

Packages that use AutomatedTest
org.squashtest.csp.tm.domain.execution   
org.squashtest.csp.tm.domain.testautomation This package contains all the relevant concepts around test automation. 
org.squashtest.csp.tm.domain.testcase   
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   
org.squashtest.csp.tm.internal.testautomation.service   
org.squashtest.csp.tm.service   
org.squashtest.csp.tm.testautomation.model   
org.squashtest.csp.tm.testautomation.spi   
 

Uses of AutomatedTest in org.squashtest.csp.tm.domain.execution
 

Methods in org.squashtest.csp.tm.domain.execution that return AutomatedTest
 AutomatedTest Execution.getAutomatedTest()
           
 

Uses of AutomatedTest in org.squashtest.csp.tm.domain.testautomation
 

Methods in org.squashtest.csp.tm.domain.testautomation that return AutomatedTest
 AutomatedTest AutomatedExecutionExtender.getAutomatedTest()
           
 AutomatedTest AutomatedTest.newWithName(String name)
           
 AutomatedTest AutomatedTest.newWithProject(TestAutomationProject project)
           
 

Methods in org.squashtest.csp.tm.domain.testautomation with parameters of type AutomatedTest
 void AutomatedExecutionExtender.setAutomatedTest(AutomatedTest automatedTest)
           
 

Uses of AutomatedTest in org.squashtest.csp.tm.domain.testcase
 

Methods in org.squashtest.csp.tm.domain.testcase that return AutomatedTest
 AutomatedTest TestCase.getAutomatedTest()
           
 

Methods in org.squashtest.csp.tm.domain.testcase with parameters of type AutomatedTest
 void TestCase.setAutomatedTest(AutomatedTest testAutomationTest)
           
 

Uses of AutomatedTest in org.squashtest.csp.tm.internal.repository
 

Methods in org.squashtest.csp.tm.internal.repository that return AutomatedTest
 AutomatedTest AutomatedTestDao.findByExample(AutomatedTest example)
          Given a detached (or even attached) AutomatedTest example, will fetch a AutomatedTest having the same characteristics.
 AutomatedTest AutomatedTestDao.findById(Long testId)
           
 AutomatedTest AutomatedTestDao.uniquePersist(AutomatedTest newTest)
          Will persist a TestAutomationTest 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 AutomatedTest
 List<AutomatedTest> AutomatedTestDao.findAllByExtender(Collection<AutomatedExecutionExtender> extenders)
          Same than AutomatedTestDao.findAllByExtenderIds(List), but with the extenders themselves instead of their ids.
 List<AutomatedTest> AutomatedTestDao.findAllByExtenderIds(List<Long> extenderIds)
          warning : return unique automated tests ( ie result.size() <= argument.size() )
 

Methods in org.squashtest.csp.tm.internal.repository with parameters of type AutomatedTest
 AutomatedTest AutomatedTestDao.findByExample(AutomatedTest example)
          Given a detached (or even attached) AutomatedTest example, will fetch a AutomatedTest having the same characteristics.
 void AutomatedTestDao.persist(AutomatedTest newTest)
          Will persist a new AutomatedTest.
 AutomatedTest AutomatedTestDao.uniquePersist(AutomatedTest newTest)
          Will persist a TestAutomationTest if really new, or return the existing instance if not.
 

Uses of AutomatedTest in org.squashtest.csp.tm.internal.repository.hibernate
 

Methods in org.squashtest.csp.tm.internal.repository.hibernate that return AutomatedTest
 AutomatedTest HibernateAutomatedTestDao.findByExample(AutomatedTest example)
           
 AutomatedTest HibernateAutomatedTestDao.findById(Long testId)
           
 AutomatedTest HibernateAutomatedTestDao.uniquePersist(AutomatedTest newTest)
           
 

Methods in org.squashtest.csp.tm.internal.repository.hibernate that return types with arguments of type AutomatedTest
 List<AutomatedTest> HibernateAutomatedTestDao.findAllByExtender(Collection<AutomatedExecutionExtender> extenders)
           
 List<AutomatedTest> HibernateAutomatedTestDao.findAllByExtenderIds(List<Long> extenderIds)
           
 

Methods in org.squashtest.csp.tm.internal.repository.hibernate with parameters of type AutomatedTest
 AutomatedTest HibernateAutomatedTestDao.findByExample(AutomatedTest example)
           
 void HibernateAutomatedTestDao.persist(AutomatedTest newTest)
           
 AutomatedTest HibernateAutomatedTestDao.uniquePersist(AutomatedTest newTest)
           
 

Uses of AutomatedTest in org.squashtest.csp.tm.internal.service
 

Methods in org.squashtest.csp.tm.internal.service that return AutomatedTest
 AutomatedTest CustomTestCaseModificationServiceImpl.bindAutomatedTest(Long testCaseId, Long taProjectId, String testName)
           
 

Uses of AutomatedTest in org.squashtest.csp.tm.internal.testautomation.service
 

Methods in org.squashtest.csp.tm.internal.testautomation.service that return AutomatedTest
 AutomatedTest TestAutomationManagementServiceImpl.findTestById(long testId)
           
 AutomatedTest InsecureTestAutomationManagementService.findTestById(long testId)
           
 AutomatedTest TestAutomationManagementServiceImpl.persistOrAttach(AutomatedTest newTest)
           
 AutomatedTest InsecureTestAutomationManagementService.persistOrAttach(AutomatedTest newTest)
          Pretty much the same than InsecureTestAutomationManagementService.persistOrAttach(TestAutomationProject).
 

Methods in org.squashtest.csp.tm.internal.testautomation.service with parameters of type AutomatedTest
 AutomatedTest TestAutomationManagementServiceImpl.persistOrAttach(AutomatedTest newTest)
           
 AutomatedTest InsecureTestAutomationManagementService.persistOrAttach(AutomatedTest newTest)
          Pretty much the same than InsecureTestAutomationManagementService.persistOrAttach(TestAutomationProject).
 

Uses of AutomatedTest in org.squashtest.csp.tm.service
 

Methods in org.squashtest.csp.tm.service that return AutomatedTest
 AutomatedTest CustomTestCaseModificationService.bindAutomatedTest(Long testCaseId, Long taProjectId, String testName)
           
 

Uses of AutomatedTest in org.squashtest.csp.tm.testautomation.model
 

Methods in org.squashtest.csp.tm.testautomation.model that return types with arguments of type AutomatedTest
 Collection<AutomatedTest> TestAutomationProjectContent.getTests()
           
 

Constructor parameters in org.squashtest.csp.tm.testautomation.model with type arguments of type AutomatedTest
TestAutomationProjectContent(TestAutomationProject project, Collection<AutomatedTest> tests)
           
 

Uses of AutomatedTest in org.squashtest.csp.tm.testautomation.spi
 

Methods in org.squashtest.csp.tm.testautomation.spi that return types with arguments of type AutomatedTest
 Map<AutomatedTest,URL> TestAutomationConnector.getResultURLs(Collection<AutomatedTest> tests, String reference)
          Given a bunch of tests, must return the URLs of their executions, that can be identified by the reference.
 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
 

Method parameters in org.squashtest.csp.tm.testautomation.spi with type arguments of type AutomatedTest
 void TestAutomationConnector.executeTests(Collection<AutomatedTest> tests, String reference)
          Given a bunch of tests, must tell the remote server to execute them.
 void TestAutomationConnector.executeTests(Collection<AutomatedTest> tests, String reference, TestAutomationCallbackService callbackService)
           Same than TestAutomationConnector.executeTests(Collection, String) (in particular, it must return as soon as the tests have started).
 Map<AutomatedTest,URL> TestAutomationConnector.getResultURLs(Collection<AutomatedTest> tests, String reference)
          Given a bunch of tests, must return the URLs of their executions, that can be identified by the reference.
 



Copyright © 2010-2012 Henix, henix.fr. All Rights Reserved.