Uses of Class
org.squashtest.csp.tm.domain.campaign.IterationTestPlanItem

Packages that use IterationTestPlanItem
org.squashtest.csp.tm.domain.campaign   
org.squashtest.csp.tm.domain.execution   
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.service   
 

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

Methods in org.squashtest.csp.tm.domain.campaign that return IterationTestPlanItem
 IterationTestPlanItem IterationTestPlanItem.createCopy()
          Factory method.
 IterationTestPlanItem TestSuite.findFirstExecutableTestPlanItem()
           
 IterationTestPlanItem TestSuite.findNextExecutableTestPlanItem(long testPlanItemId)
          finds next item (that last execution has unexecuted step) or (has no execution and is not test case deleted) can return item linked to test-case with no step
 IterationTestPlanItem TestSuite.getFirstTestPlanItem()
           
 IterationTestPlanItem Iteration.getTestPlan(Long testPlanId)
           
 IterationTestPlanItem Iteration.getTestPlanForTestCaseId(Long testCaseId)
           
 

Methods in org.squashtest.csp.tm.domain.campaign that return types with arguments of type IterationTestPlanItem
 List<IterationTestPlanItem> TestSuite.createPastableCopyOfTestPlan()
           returns an ordered copy of the test-suite test plan
-test plans items that are not linked to a test case are not copied
-the copy of a test plan item is done using createCopy()
 List<IterationTestPlanItem> TestSuite.getTestPlan()
          Warning : that property builds a new list every time.
 List<IterationTestPlanItem> Iteration.getTestPlans()
           
 

Methods in org.squashtest.csp.tm.domain.campaign with parameters of type IterationTestPlanItem
 void Iteration.addTestPlan(IterationTestPlanItem testPlan)
           
 int Iteration.getIndexOf(IterationTestPlanItem item)
           
 void Iteration.removeTestPlan(IterationTestPlanItem testPlan)
           
 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
 

Method parameters in org.squashtest.csp.tm.domain.campaign with type arguments of type IterationTestPlanItem
 void TestSuite.bindTestPlanItems(List<IterationTestPlanItem> items)
          Binds the test plan items to this test suite
 void Iteration.moveTestPlans(int newIndex, List<IterationTestPlanItem> movedItems)
           
 void TestSuite.reorderTestPlan(int newIndex, List<IterationTestPlanItem> movedItems)
          Since the test plan of a TestSuite is merely a view on the backing iteration, we will reorder here the test plan accordingly.
 void TestSuite.unBindTestPlan(List<IterationTestPlanItem> items)
           
 

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

Methods in org.squashtest.csp.tm.domain.execution that return IterationTestPlanItem
 IterationTestPlanItem Execution.getTestPlan()
           
 

Methods in org.squashtest.csp.tm.domain.execution with parameters of type IterationTestPlanItem
 void Execution.notifyAddedTo(IterationTestPlanItem testPlan)
           
 

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

Methods in org.squashtest.csp.tm.internal.repository that return types with arguments of type IterationTestPlanItem
 List<IterationTestPlanItem> TestSuiteDao.findAllTestPlanItemsPaged(long testSuiteId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 List<IterationTestPlanItem> CustomTestSuiteDao.findLaunchableTestPlan(long testSuiteId)
           return a list of ordered iteration_test_plan_items that are linked to a test case or have an execution
making it the launchable test plan of the test suite
 List<IterationTestPlanItem> IterationDao.findTestPlanFiltered(long iterationId, CollectionSorting filter)
           
 List<IterationTestPlanItem> CustomTestSuiteDao.findTestPlanPartition(long testSuiteId, List<Long> testPlanItemIds)
           
 

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

Methods in org.squashtest.csp.tm.internal.repository.hibernate that return types with arguments of type IterationTestPlanItem
 List<IterationTestPlanItem> HibernateTestSuiteDao.findLaunchableTestPlan(long testSuiteId)
           
 List<IterationTestPlanItem> HibernateIterationDao.findTestPlanFiltered(long iterationId, CollectionSorting filter)
           
 List<IterationTestPlanItem> HibernateTestSuiteDao.findTestPlanPaged(long testSuiteId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 List<IterationTestPlanItem> HibernateTestSuiteDao.findTestPlanPartition(long testSuiteId, List<Long> testPlanItemIds)
           
 

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

Methods in org.squashtest.csp.tm.internal.service that return IterationTestPlanItem
 IterationTestPlanItem IterationTestPlanManagerServiceImpl.findTestPlanItem(Long iterationId, Long itemTestPlanId)
           
 IterationTestPlanItem IterationTestPlanManagerServiceImpl.findTestPlanItemByTestCaseId(long iterationId, long testCaseId)
           
 

Methods in org.squashtest.csp.tm.internal.service that return types with arguments of type IterationTestPlanItem
 List<IterationTestPlanItem> IterationTestPlanManagerServiceImpl.addTestPlanItemsToIteration(List<Long> testNodesIds, Iteration iteration)
           
 FilteredCollectionHolder<List<IterationTestPlanItem>> IterationTestPlanManagerServiceImpl.findTestPlan(long iterationId, CollectionSorting filter)
           
 org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<IterationTestPlanItem>> TestSuiteTestPlanManagerServiceImpl.findTestPlan(long suiteId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<IterationTestPlanItem>> CustomTestSuiteModificationServiceImpl.findTestSuiteTestPlan(long suiteId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 

Methods in org.squashtest.csp.tm.internal.service with parameters of type IterationTestPlanItem
 Execution CustomIterationModificationServiceImpl.addAutomatedExecution(IterationTestPlanItem item)
           
 Execution CustomIterationModificationServiceImpl.addExecution(IterationTestPlanItem item)
           
 void IterationTestPlanManagerServiceImpl.updateTestCaseLastExecutedByAndOn(IterationTestPlanItem givenTestPlan, Date lastExecutedOn, String lastExecutedBy)
           
 

Method parameters in org.squashtest.csp.tm.internal.service with type arguments of type IterationTestPlanItem
 void IterationTestPlanManagerServiceImpl.addTestPlanToIteration(List<IterationTestPlanItem> testPlan, long iterationId)
           
 void CustomTestSuiteModificationServiceImpl.bindTestPlanObj(TestSuite testSuite, List<IterationTestPlanItem> itemTestPlans)
           
 void CustomTestSuiteModificationServiceImpl.unbindTestPlanObj(TestSuite testSuite, List<IterationTestPlanItem> itemTestPlans)
           
 

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

Methods in org.squashtest.csp.tm.internal.service.campaign with parameters of type IterationTestPlanItem
 Execution IterationTestPlanManager.addExecution(IterationTestPlanItem item)
           
 

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

Methods in org.squashtest.csp.tm.service that return IterationTestPlanItem
 IterationTestPlanItem IterationTestPlanFinder.findTestPlanItem(Long iterationId, Long itemTestPlanId)
           
 IterationTestPlanItem IterationTestPlanManagerService.findTestPlanItemByTestCaseId(long iterationId, long testCaseId)
          Adds a list of test cases to a campaign.
 

Methods in org.squashtest.csp.tm.service that return types with arguments of type IterationTestPlanItem
 List<IterationTestPlanItem> IterationTestPlanManagerService.addTestPlanItemsToIteration(List<Long> testCaseIds, Iteration iteration)
          Adds a list of test cases to an iteration.
 FilteredCollectionHolder<List<IterationTestPlanItem>> IterationTestPlanFinder.findTestPlan(long iterationId, CollectionSorting filter)
           
 org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<IterationTestPlanItem>> TestSuiteTestPlanManagerService.findTestPlan(long testSuiteId, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<IterationTestPlanItem>> CustomTestSuiteModificationService.findTestSuiteTestPlan(long suiteId, org.squashtest.tm.core.foundation.collection.Paging paging)
          That method will retrieve the test plan items attached to a given test suite.
 

Methods in org.squashtest.csp.tm.service with parameters of type IterationTestPlanItem
 void IterationTestPlanManagerService.updateTestCaseLastExecutedByAndOn(IterationTestPlanItem givenTestPlan, Date lastExecutedOn, String lastExecutedBy)
          Update item test plan lastExecuted data (by and on) (for the moment they're constants)
 

Method parameters in org.squashtest.csp.tm.service with type arguments of type IterationTestPlanItem
 void IterationTestPlanManagerService.addTestPlanToIteration(List<IterationTestPlanItem> testPlan, long iterationId)
           persist each iteration_test_plan_item and add it to iteration
 void CustomTestSuiteModificationService.bindTestPlanObj(TestSuite testSuite, List<IterationTestPlanItem> itemTestPlans)
          That method will attach several IterationTestPlanItem to the given TestSuite.
 void CustomTestSuiteModificationService.unbindTestPlanObj(TestSuite testSuite, List<IterationTestPlanItem> itemTestPlans)
          That method will detach several IterationTestPlanItem from the given TestSuite.
 



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