|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of TestCase in org.squashtest.csp.tm.domain.campaign |
|---|
| Methods in org.squashtest.csp.tm.domain.campaign that return TestCase | |
|---|---|
TestCase |
CampaignTestPlanItem.getReferencedTestCase()
|
TestCase |
IterationTestPlanItem.getReferencedTestCase()
|
TestCase |
TestCaseAlreadyInTestPlanException.getTestCase()
|
| Methods in org.squashtest.csp.tm.domain.campaign that return types with arguments of type TestCase | |
|---|---|
List<TestCase> |
Iteration.getPlannedTestCase()
|
| Methods in org.squashtest.csp.tm.domain.campaign with parameters of type TestCase | |
|---|---|
CampaignTestPlanItem |
Campaign.findTestPlanItem(TestCase testCase)
|
boolean |
Iteration.isTestCasePlanned(TestCase testCase)
|
void |
CampaignTestPlanItem.setReferencedTestCase(TestCase referencedTestCase)
|
void |
IterationTestPlanItem.setReferencedTestCase(TestCase referencedTestCase)
|
boolean |
Campaign.testPlanContains(TestCase tc)
|
| Constructors in org.squashtest.csp.tm.domain.campaign with parameters of type TestCase | |
|---|---|
CampaignTestPlanItem(TestCase testCase)
|
|
IterationTestPlanItem(TestCase testCase)
|
|
TestCaseAlreadyInTestPlanException(TestCase testCase,
Campaign campaign)
|
|
| Uses of TestCase in org.squashtest.csp.tm.domain.execution |
|---|
| Methods in org.squashtest.csp.tm.domain.execution that return TestCase | |
|---|---|
TestCase |
Execution.getReferencedTestCase()
|
| Methods in org.squashtest.csp.tm.domain.execution with parameters of type TestCase | |
|---|---|
void |
Execution.setReferencedTestCase(TestCase testCase)
|
| Constructors in org.squashtest.csp.tm.domain.execution with parameters of type TestCase | |
|---|---|
Execution(String description,
TestCase testCase)
|
|
Execution(TestCase testCase)
|
|
| Uses of TestCase in org.squashtest.csp.tm.domain.requirement |
|---|
| Methods in org.squashtest.csp.tm.domain.requirement that return types with arguments of type TestCase | |
|---|---|
Set<TestCase> |
RequirementVersion.getVerifyingTestCases()
Returns an UNMODIFIABLE VIEW of the verifying test cases. |
| Methods in org.squashtest.csp.tm.domain.requirement with parameters of type TestCase | |
|---|---|
void |
RequirementVersion.addVerifyingTestCase(TestCase testCase)
|
void |
RequirementVersion.notifyNoLongerVerifiedBy(TestCase testCase)
|
void |
RequirementVersion.notifyVerifiedBy(TestCase testCase)
|
void |
RequirementVersion.removeVerifyingTestCase(TestCase testCase)
|
| Uses of TestCase in org.squashtest.csp.tm.domain.testcase |
|---|
| Methods in org.squashtest.csp.tm.domain.testcase that return TestCase | |
|---|---|
TestCase |
TestCase.createPastableCopy()
|
TestCase |
CallTestStep.getCalledTestCase()
|
| Methods in org.squashtest.csp.tm.domain.testcase with parameters of type TestCase | |
|---|---|
void |
CallTestStep.setCalledTestCase(TestCase calledTestCase)
|
void |
TestCaseLibraryNodeVisitor.visit(TestCase visited)
|
| Uses of TestCase in org.squashtest.csp.tm.internal.repository |
|---|
| Methods in org.squashtest.csp.tm.internal.repository that return TestCase | |
|---|---|
TestCase |
TestCaseDao.findAndInit(Long testCaseId)
|
TestCase |
TestCaseDao.findByIdWithInitializedSteps(long testCaseId)
|
TestCase |
TestCaseDao.findTestCaseByTestStepId(long testStepId)
This method returns the test step's associated TestCase |
| Methods in org.squashtest.csp.tm.internal.repository that return types with arguments of type TestCase | |
|---|---|
List<TestCase> |
TestCaseDao.findAllByIdList(List<Long> testCaseIds)
|
List<TestCase> |
TestCaseDao.findAllByIdListNonOrdered(List<Long> testCaseIds)
|
List<TestCase> |
TestCaseDao.findAllByRequirement(RequirementSearchCriteria criteria,
boolean isProjectOrdered)
Returns the test cases associated with at least a requirement that meets the criteria |
List<TestCase> |
TestCaseDao.findAllByVerifiedRequirementVersion(long verifiedId,
org.squashtest.csp.core.infrastructure.collection.PagingAndSorting sorting)
Returns paged and sorted collection of test cases verifying the requirement version of given id. |
List<TestCase> |
TestCaseDao.findAllCallingTestCases(long testCaseId,
CollectionSorting sorting)
returns the ids of all the test cases having at least one call test step referencing the given test case. |
| Uses of TestCase in org.squashtest.csp.tm.internal.repository.hibernate |
|---|
| Methods in org.squashtest.csp.tm.internal.repository.hibernate that return TestCase | |
|---|---|
TestCase |
HibernateTestCaseDao.findAndInit(Long testCaseId)
|
TestCase |
HibernateTestCaseDao.findByIdWithInitializedSteps(long testCaseId)
|
TestCase |
HibernateTestCaseDao.findTestCaseByTestStepId(long testStepId)
|
| Methods in org.squashtest.csp.tm.internal.repository.hibernate that return types with arguments of type TestCase | |
|---|---|
List<TestCase> |
HibernateTestCaseDao.findAllByIdList(List<Long> testCasesIds)
|
List<TestCase> |
HibernateTestCaseDao.findAllByIdListNonOrdered(List<Long> testCasesIds)
|
List<TestCase> |
HibernateTestCaseDao.findAllByRequirement(RequirementSearchCriteria criteria,
boolean isProjectOrdered)
|
List<TestCase> |
HibernateTestCaseDao.findAllByVerifiedRequirementVersion(long verifiedId,
org.squashtest.csp.core.infrastructure.collection.PagingAndSorting sorting)
|
List<TestCase> |
HibernateTestCaseDao.findAllCallingTestCases(long testCaseId,
CollectionSorting sorting)
|
| Uses of TestCase in org.squashtest.csp.tm.internal.service |
|---|
| Methods in org.squashtest.csp.tm.internal.service that return TestCase | |
|---|---|
TestCase |
CustomTestCaseModificationServiceImpl.findById(long testCaseId)
|
TestCase |
VerifiedRequirementsManagerServiceImpl.findTestCase(long testCaseId)
|
TestCase |
TestCaseLibraryNavigationServiceImpl.findTestCase(long testCaseId)
|
TestCase |
CallStepManagerServiceImpl.findTestCase(long testCaseId)
|
TestCase |
CustomTestCaseModificationServiceImpl.findTestCaseWithSteps(long testCaseId)
|
| Methods in org.squashtest.csp.tm.internal.service that return types with arguments of type TestCase | |
|---|---|
FilteredCollectionHolder<List<TestCase>> |
CustomTestCaseModificationServiceImpl.findCallingTestCases(long testCaseId,
CollectionSorting sorting)
|
List<TestCase> |
CallStepManagerServiceImpl.findCallingTestCases(long testCaseId,
CollectionSorting sorting)
|
List<TestCase> |
CustomIterationModificationServiceImpl.findPlannedTestCases(long iterationId)
|
List<TestCase> |
IterationTestPlanManagerServiceImpl.findPlannedTestCases(Long iterationId)
|
List<TestCase> |
SearchServiceImpl.findTestCaseByRequirement(RequirementSearchCriteria criteria,
boolean isProjectOrdered)
|
org.squashtest.csp.core.infrastructure.collection.PagedCollectionHolder<List<TestCase>> |
CustomRequirementModificationServiceImpl.findVerifyingTestCasesByRequirementId(long requirementId,
org.squashtest.csp.core.infrastructure.collection.PagingAndSorting pagingAndSorting)
|
List<TestCase> |
TestCaseNodeWalker.walk(List<TestCaseLibraryNode> inputList)
|
| Methods in org.squashtest.csp.tm.internal.service with parameters of type TestCase | |
|---|---|
void |
TestCaseLibraryNavigationServiceImpl.addTestCaseToFolder(long folderId,
TestCase testCase)
|
void |
TestCaseLibraryNavigationServiceImpl.addTestCaseToLibrary(long libraryId,
TestCase testCase)
|
void |
TestCaseNodeDeletionHandler.deleteStep(TestCase ower,
TestStep step)
|
void |
TestCaseNodeWalker.visit(TestCase testCase)
|
| Uses of TestCase in org.squashtest.csp.tm.internal.service.deletion |
|---|
| Methods in org.squashtest.csp.tm.internal.service.deletion with parameters of type TestCase | |
|---|---|
void |
TestCaseNodeDeletionHandlerImpl.deleteStep(TestCase owner,
TestStep step)
|
| Uses of TestCase in org.squashtest.csp.tm.service |
|---|
| Methods in org.squashtest.csp.tm.service that return TestCase | |
|---|---|
TestCase |
CustomTestCaseModificationService.findById(long testCaseId)
|
TestCase |
TestCaseLibraryNavigationService.findTestCase(long testCaseId)
|
TestCase |
CallStepManagerService.findTestCase(long testCaseId)
|
TestCase |
VerifiedRequirementsManagerService.findTestCase(long testCaseId)
|
TestCase |
CustomTestCaseModificationService.findTestCaseWithSteps(long testCaseId)
|
| Methods in org.squashtest.csp.tm.service that return types with arguments of type TestCase | |
|---|---|
FilteredCollectionHolder<List<TestCase>> |
CustomTestCaseModificationService.findCallingTestCases(long testCaseId,
CollectionSorting sorting)
That method returns the list of test cases having at least one CallTestStep directly calling the test case identified by testCaseId. |
List<TestCase> |
CallStepManagerService.findCallingTestCases(long testCaseId,
CollectionSorting sorting)
That method returns the list of test cases having at least one CallTestStep directly calling the test case identified by testCaseId. |
List<TestCase> |
CustomIterationModificationService.findPlannedTestCases(long iterationId)
|
List<TestCase> |
IterationTestPlanManagerService.findPlannedTestCases(Long iterationId)
|
List<TestCase> |
SearchService.findTestCaseByRequirement(RequirementSearchCriteria criteria,
boolean isProjectOrdered)
|
org.squashtest.csp.core.infrastructure.collection.PagedCollectionHolder<List<TestCase>> |
CustomRequirementModificationService.findVerifyingTestCasesByRequirementId(long requirementId,
org.squashtest.csp.core.infrastructure.collection.PagingAndSorting pagingAndSorting)
|
| Methods in org.squashtest.csp.tm.service with parameters of type TestCase | |
|---|---|
void |
TestCaseLibraryNavigationService.addTestCaseToFolder(long folderId,
TestCase testCase)
|
void |
TestCaseLibraryNavigationService.addTestCaseToLibrary(long libraryId,
TestCase testCase)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||