Uses of Class
org.squashtest.csp.tm.domain.execution.Execution

Packages that use Execution
org.squashtest.csp.tm.domain.bugtracker   
org.squashtest.csp.tm.domain.campaign   
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.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.service.campaign   
org.squashtest.csp.tm.internal.service.deletion   
org.squashtest.csp.tm.internal.testautomation.service   
org.squashtest.csp.tm.service   
 

Uses of Execution in org.squashtest.csp.tm.domain.bugtracker
 

Methods in org.squashtest.csp.tm.domain.bugtracker that return Execution
 Execution IssueOwnership.getExecution()
           
 

Uses of Execution in org.squashtest.csp.tm.domain.campaign
 

Methods in org.squashtest.csp.tm.domain.campaign that return Execution
 Execution IterationTestPlanItem.createAutomatedExecution(TestCaseCyclicCallChecker cyclicCallChecker)
           
 Execution IterationTestPlanItem.createExecution(TestCaseCyclicCallChecker cyclicCallChecker)
          Creates an execution of this item and returns it.
 Execution IterationTestPlanItem.getLatestExecution()
           
 

Methods in org.squashtest.csp.tm.domain.campaign that return types with arguments of type Execution
 List<Execution> Iteration.getExecutions()
          flattened list of the executions
 List<Execution> IterationTestPlanItem.getExecutions()
           
 

Methods in org.squashtest.csp.tm.domain.campaign with parameters of type Execution
 void IterationTestPlanItem.addExecution(Execution execution)
           
 void IterationTestPlanItem.removeExecution(Execution execution)
           
 void Iteration.updateAutoDatesAfterExecutionDetach(IterationTestPlanItem iterationTestPlanItem, Execution execution)
          will update acual end and start dates if are auto and if they were driven by the execution last-executed on
 

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

Methods in org.squashtest.csp.tm.domain.execution that return Execution
 Execution ExecutionStep.getExecution()
           
 

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

Methods in org.squashtest.csp.tm.domain.testautomation that return Execution
 Execution AutomatedExecutionExtender.getExecution()
           
 

Methods in org.squashtest.csp.tm.domain.testautomation with parameters of type Execution
 void AutomatedExecutionExtender.setExecution(Execution execution)
           
 

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

Methods in org.squashtest.csp.tm.internal.repository that return Execution
 Execution ExecutionDao.findAndInit(long executionId)
           
 Execution ExecutionStepDao.findParentExecution(Long executionStepId)
           
 

Methods in org.squashtest.csp.tm.internal.repository that return types with arguments of type Execution
 List<Execution> ExecutionDao.findAllByTestCaseId(long testCaseId, org.squashtest.tm.core.foundation.collection.PagingAndSorting pas)
          Returns the executions which ran the given test case using the given paging and sorting data
 List<Execution> ExecutionDao.findAllByTestCaseIdOrderByRunDate(long testCaseId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 List<Execution> IterationDao.findAllExecutionByIterationId(long iterationId)
           
 List<Execution> TestCaseDao.findAllExecutionByTestCase(Long tcId)
          Returns all the execution associated to this test-case
 List<Execution> CustomTestSuiteDao.findAllExecutionByTestSuite(long testSuiteId)
           
 List<Execution> CampaignDao.findAllExecutionsByCampaignId(Long campaignId)
          find all the campaign's iterations, and return all iteration's executions regardless of the campaign test-plan
 List<Execution> IterationDao.findOrderedExecutionsByIterationAndTestCase(long iterationId, long testCaseId)
           
 List<Execution> IterationDao.findOrderedExecutionsByIterationAndTestPlan(long iterationId, long testPlanId)
           
 List<Execution> IterationDao.findOrderedExecutionsByIterationId(long iterationId)
           
 

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

Methods in org.squashtest.csp.tm.internal.repository.hibernate that return Execution
 Execution HibernateExecutionDao.findAndInit(long executionId)
           
 Execution HibernateExecutionStepDao.findParentExecution(Long executionStepId)
           
 

Methods in org.squashtest.csp.tm.internal.repository.hibernate that return types with arguments of type Execution
 List<Execution> HibernateExecutionDao.findAllByTestCaseId(long testCaseId, org.squashtest.tm.core.foundation.collection.PagingAndSorting pas)
           
 List<Execution> HibernateExecutionDao.findAllByTestCaseIdOrderByRunDate(long testCaseId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 List<Execution> HibernateIterationDao.findAllExecutionByIterationId(long iterationId)
           
 List<Execution> HibernateTestCaseDao.findAllExecutionByTestCase(Long tcId)
           
 List<Execution> HibernateTestSuiteDao.findAllExecutionByTestSuite(long testSuiteId)
           
 List<Execution> HibernateCampaignDao.findAllExecutionsByCampaignId(Long campaignId)
           
 List<Execution> HibernateIterationDao.findOrderedExecutionsByIterationAndTestCase(long iterationId, long testCaseId)
           
 List<Execution> HibernateIterationDao.findOrderedExecutionsByIterationAndTestPlan(long iterationId, long testPlanId)
           
 List<Execution> HibernateIterationDao.findOrderedExecutionsByIterationId(long iterationId)
           
 

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

Methods in org.squashtest.csp.tm.internal.service that return Execution
 Execution CustomIterationModificationServiceImpl.addAutomatedExecution(IterationTestPlanItem item)
           
 Execution CustomIterationModificationServiceImpl.addAutomatedExecution(long iterationId, long testPlanId)
           
 Execution CustomIterationModificationServiceImpl.addExecution(IterationTestPlanItem item)
           
 Execution CustomIterationModificationServiceImpl.addExecution(long iterationId, long testPlanId)
           
 Execution ExecutionModificationServiceImpl.findAndInitExecution(Long executionId)
           
 Execution ExecutionModificationServiceImpl.findById(long id)
           
 Execution ExecutionProcessingServiceImpl.findExecution(Long executionId)
           
 Execution TestSuiteExecutionProcessingServiceImpl.startResume(long testSuiteId)
           
 Execution TestSuiteExecutionProcessingServiceImpl.startResumeNextExecution(long testSuiteId, long testPlanItemId)
           
 

Methods in org.squashtest.csp.tm.internal.service that return types with arguments of type Execution
 org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<Execution>> ExecutionModificationServiceImpl.findAllByTestCaseId(long testCaseId, org.squashtest.tm.core.foundation.collection.PagingAndSorting pas)
           
 List<Execution> ExecutionModificationServiceImpl.findAllByTestCaseIdOrderByRunDate(long testCaseId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 List<Execution> CustomIterationModificationServiceImpl.findAllExecutions(long iterationId)
           
 List<Execution> CustomIterationModificationServiceImpl.findExecutionsByTestPlan(long iterationId, long testPlanId)
           
 

Methods in org.squashtest.csp.tm.internal.service with parameters of type Execution
 void CampaignNodeDeletionHandler.deleteExecution(Execution execution)
          that method should delete the execution.
 void ExecutionModificationServiceImpl.deleteExecution(Execution execution)
           
 

Method parameters in org.squashtest.csp.tm.internal.service with type arguments of type Execution
 void CampaignNodeDeletionHandler.deleteExecutions(List<Execution> executions)
          uses CampaignNodeDeletionHandler.deleteExecution(Execution)
 

Uses of Execution in org.squashtest.csp.tm.internal.service.campaign
 

Methods in org.squashtest.csp.tm.internal.service.campaign that return Execution
 Execution IterationTestPlanManager.addExecution(IterationTestPlanItem item)
           
 

Uses of Execution in org.squashtest.csp.tm.internal.service.deletion
 

Methods in org.squashtest.csp.tm.internal.service.deletion with parameters of type Execution
 void CampaignDeletionHandlerImpl.deleteExecSteps(Execution execution)
           
 void CampaignDeletionHandlerImpl.deleteExecution(Execution execution)
           
 

Method parameters in org.squashtest.csp.tm.internal.service.deletion with type arguments of type Execution
 void CampaignDeletionHandlerImpl.deleteExecutions(List<Execution> executions)
           
 

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

Methods in org.squashtest.csp.tm.internal.testautomation.service that return types with arguments of type Execution
 List<Execution> TestAutomationManagementServiceImpl.findExecutionsByAutomatedTestSuiteId(String automatedTestSuiteId)
           
 

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

Methods in org.squashtest.csp.tm.service that return Execution
 Execution CustomIterationModificationService.addAutomatedExecution(long iterationId, long testPlanId)
           
 Execution CustomIterationModificationService.addExecution(long iterationId, long testPlanId)
           
 Execution ExecutionModificationService.findAndInitExecution(Long executionId)
           
 Execution ExecutionFinder.findById(long id)
           
 Execution ExecutionProcessingService.findExecution(Long executionId)
           
 Execution TestSuiteExecutionProcessingService.startResume(long testSuiteId)
           returns the execution were to resume the test suite
or throw a @linkEmptyTestSuiteTestPlanException or TestPlanItemNotExecutableException if no execution is to be resumed because : all terminated, or no execution-step on executions, or no execution and test-case deleted if there is no execution should start a new execution for the given test suite, ie create an execution for the first test case of this suite's test plan
 Execution TestSuiteExecutionProcessingService.startResumeNextExecution(long testSuiteId, long testPlanItemId)
           Should start a new execution for the next executable test plan item of the given test suite's test plan.
 

Methods in org.squashtest.csp.tm.service that return types with arguments of type Execution
 org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<Execution>> ExecutionFinder.findAllByTestCaseId(long testCaseId, org.squashtest.tm.core.foundation.collection.PagingAndSorting pas)
          Fetches all the executions which ran a given test case and matching the given paging and sorting instructions.
 List<Execution> ExecutionFinder.findAllByTestCaseIdOrderByRunDate(long testCaseId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 List<Execution> IterationFinder.findAllExecutions(long iterationId)
           
 List<Execution> TestAutomationFinderService.findExecutionsByAutomatedTestSuiteId(String automatedTestSuiteId)
          Given the id of an automated test suite, returns the list of executions associated to this automated test suite.
 List<Execution> IterationFinder.findExecutionsByTestPlan(long iterationId, long testPlanId)
           
 

Methods in org.squashtest.csp.tm.service with parameters of type Execution
 void ExecutionModificationService.deleteExecution(Execution execution)
          that method should delete the execution.
 



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