Uses of Class
net.thucydides.core.model.TestResult

Packages that use TestResult
net.thucydides.core.model The Thucydides domain model, which represents acceptance test runs. 
net.thucydides.core.reports Thucydides generates reports in HTML and XML by default. 
net.thucydides.core.reports.matchers   
net.thucydides.core.statistics.dao   
net.thucydides.core.statistics.model   
 

Uses of TestResult in net.thucydides.core.model
 

Methods in net.thucydides.core.model that return TestResult
 TestResult TestResultList.getOverallResult()
           
 TestResult TestStep.getResult()
           
 TestResult TestOutcome.getResult()
          The outcome of the acceptance test, based on the outcome of the test steps.
 TestResult StoryTestResults.getResult()
           
 TestResult FeatureResults.getResult()
           
static TestResult TestResult.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TestResult[] TestResult.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.thucydides.core.model with parameters of type TestResult
 void TestOutcome.setAnnotatedResult(TestResult annotatedResult)
           
 void TestStep.setResult(TestResult result)
          Each test step has a result, indicating the outcome of this step.
 

Method parameters in net.thucydides.core.model with type arguments of type TestResult
static TestResultList TestResultList.of(List<TestResult> testResults)
           
 

Constructors in net.thucydides.core.model with parameters of type TestResult
TestOutcome(long startTime, long duration, String title, String methodName, Class<?> testCase, List<TestStep> testSteps, Set<String> issues, Set<String> additionalIssues, Set<TestTag> tags, Story userStory, Throwable testFailureCause, TestResult annotatedResult, com.google.common.base.Optional<String> qualifier)
           
 

Constructor parameters in net.thucydides.core.model with type arguments of type TestResult
TestResultList(List<TestResult> testResults)
           
 

Uses of TestResult in net.thucydides.core.reports
 

Methods in net.thucydides.core.reports that return TestResult
 TestResult TestOutcomes.getResult()
           
 

Uses of TestResult in net.thucydides.core.reports.matchers
 

Methods in net.thucydides.core.reports.matchers with parameters of type TestResult
static org.hamcrest.Matcher<TestOutcome> TestOutcomeMatchers.withResult(TestResult testResult)
           
 

Uses of TestResult in net.thucydides.core.statistics.dao
 

Methods in net.thucydides.core.statistics.dao that return types with arguments of type TestResult
 List<TestResult> TestOutcomeHistoryDAO.getResultsForTestsWithTag(String tag)
           
 List<TestResult> HibernateTestOutcomeHistoryDAO.getResultsForTestsWithTag(String tag)
           
 List<TestResult> TestOutcomeHistoryDAO.getResultsForTestsWithTagType(String tagType)
           
 List<TestResult> HibernateTestOutcomeHistoryDAO.getResultsForTestsWithTagType(String tagType)
           
 List<TestResult> HibernateTestOutcomeHistoryDAO.getResultsTestWithTitle(String title)
           
 

Methods in net.thucydides.core.statistics.dao with parameters of type TestResult
 Long TestOutcomeHistoryDAO.countTestRunsByTagAndResult(String tag, TestResult result)
           
 Long HibernateTestOutcomeHistoryDAO.countTestRunsByTagAndResult(String tag, TestResult result)
           
 Long TestOutcomeHistoryDAO.countTestRunsByTagTypeAndResult(String tagType, TestResult result)
           
 Long HibernateTestOutcomeHistoryDAO.countTestRunsByTagTypeAndResult(String tagType, TestResult result)
           
 Long TestOutcomeHistoryDAO.countTestRunsByTitleAndResult(String title, TestResult result)
           
 Long HibernateTestOutcomeHistoryDAO.countTestRunsByTitleAndResult(String title, TestResult result)
           
 

Uses of TestResult in net.thucydides.core.statistics.model
 

Methods in net.thucydides.core.statistics.model that return TestResult
 TestResult TestRun.getResult()
           
 

Methods in net.thucydides.core.statistics.model with parameters of type TestResult
 int TestStatistics.ResultCountBuilder.whereTheOutcomeWas(TestResult testResult)
           
 

Constructors in net.thucydides.core.statistics.model with parameters of type TestResult
TestRun(String title, String projectKey, TestResult result, long duration, Date executionDate)
           
 

Constructor parameters in net.thucydides.core.statistics.model with type arguments of type TestResult
TestStatistics(Long totalTestRuns, Long passingTestRuns, Long failingTestRuns, List<TestResult> testResults, List<TestRunTag> tags)
           
 



Copyright © 2011-2012 Wakaleo Consulting. All Rights Reserved.