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

Packages that use TestOutcome
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.html XML Report generation. 
net.thucydides.core.reports.json   
net.thucydides.core.reports.matchers   
net.thucydides.core.reports.saucelabs   
net.thucydides.core.reports.xml XML Report generation. 
net.thucydides.core.statistics   
net.thucydides.core.statistics.dao   
net.thucydides.core.statistics.model   
net.thucydides.core.statistics.service   
net.thucydides.core.steps Base class to be used when writing a library of resuable test steps. 
 

Uses of TestOutcome in net.thucydides.core.model
 

Methods in net.thucydides.core.model that return TestOutcome
 TestOutcome TestOutcome.andStep(TestStep step)
           
static TestOutcome TestOutcome.forTest(String methodName, Class<?> testCase)
          Create a new test outcome instance for a given test class or user story.
static TestOutcome TestOutcome.forTestInStory(String testName, Class<?> testCase, Story story)
           
static TestOutcome TestOutcome.forTestInStory(String testName, Story story)
           
 TestOutcome TestOutcome.recordStep(TestStep step)
          Add a test step to this acceptance test.
 TestOutcome TestOutcome.usingIssueTracking(IssueTracking issueTracking)
           
 TestOutcome TestOutcome.withQualifier(String qualifier)
           
 TestOutcome TestOutcome.withStep(TestStep step)
           
 

Methods in net.thucydides.core.model that return types with arguments of type TestOutcome
 List<TestOutcome> StoryTestResults.getTestOutcomes()
           
 

Methods in net.thucydides.core.model with parameters of type TestOutcome
 String ReportNamer.getNormalizedTestNameFor(TestOutcome testOutcome)
          Return a filesystem-friendly version of the test case name.
 String ReportNamer.getSimpleTestNameFor(TestOutcome testOutcome)
          Return a filesystem-friendly version of the test case name.
 void StoryTestResults.recordTestRun(TestOutcome testOutcome)
          Add a test run result to the aggregate set of results.
 

Uses of TestOutcome in net.thucydides.core.reports
 

Methods in net.thucydides.core.reports that return types with arguments of type TestOutcome
 List<? extends TestOutcome> TestOutcomes.getTests()
           
 List<TestOutcome> TestOutcomeLoader.loadFrom(File reportDirectory)
          Load the test outcomes from a given directory.
 

Methods in net.thucydides.core.reports with parameters of type TestOutcome
 File AcceptanceTestReporter.generateReportFor(TestOutcome testOutcome)
          Generate reports for a given acceptance test run.
 

Method parameters in net.thucydides.core.reports with type arguments of type TestOutcome
 void ReportService.generateReportsFor(List<TestOutcome> testOutcomeResults)
          A test runner can generate reports via Reporter instances that subscribe to the test runner.
static TestOutcomes TestOutcomes.of(List<? extends TestOutcome> outcomes)
           
 

Constructor parameters in net.thucydides.core.reports with type arguments of type TestOutcome
TestOutcomes(List<? extends TestOutcome> outcomes, double estimatedAverageStepCount)
           
TestOutcomes(List<? extends TestOutcome> outcomes, double estimatedAverageStepCount, String label, HibernateTestStatisticsProvider testStatisticsProvider)
           
TestOutcomes(List<? extends TestOutcome> outcomes, double estimatedAverageStepCount, String label, HibernateTestStatisticsProvider testStatisticsProvider, TestOutcomes rootOutcomes)
           
 

Uses of TestOutcome in net.thucydides.core.reports.html
 

Methods in net.thucydides.core.reports.html with parameters of type TestOutcome
 File HtmlAcceptanceTestReporter.generateReportFor(TestOutcome testOutcome)
          Generate an XML report for a given test run.
 

Uses of TestOutcome in net.thucydides.core.reports.json
 

Methods in net.thucydides.core.reports.json with parameters of type TestOutcome
 Color RelativeSizeColorScheme.colorFor(TestOutcome outcome)
           
 Color ProgressColorScheme.colorFor(TestOutcome outcome)
           
 Color ColorScheme.colorFor(TestOutcome outcome)
           
 

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

Methods in net.thucydides.core.reports.matchers that return types with arguments of type TestOutcome
static org.hamcrest.Matcher<TestOutcome> TestOutcomeMatchers.havingTag(TestTag expectedTag)
           
static org.hamcrest.Matcher<TestOutcome> TestOutcomeMatchers.havingTagName(String tagName)
           
static org.hamcrest.Matcher<TestOutcome> TestOutcomeMatchers.havingTagType(String tagType)
           
static org.hamcrest.Matcher<TestOutcome> TestOutcomeMatchers.withResult(TestResult testResult)
           
 

Uses of TestOutcome in net.thucydides.core.reports.saucelabs
 

Methods in net.thucydides.core.reports.saucelabs with parameters of type TestOutcome
 String SaucelabsLinkGenerator.linkFor(TestOutcome testOutcome)
           
 String LinkGenerator.linkFor(TestOutcome testOutcome)
           
 

Uses of TestOutcome in net.thucydides.core.reports.xml
 

Methods in net.thucydides.core.reports.xml that return types with arguments of type TestOutcome
 com.google.common.base.Optional<TestOutcome> XMLTestOutcomeReporter.loadReportFrom(File reportFile)
           
 

Methods in net.thucydides.core.reports.xml with parameters of type TestOutcome
 File XMLTestOutcomeReporter.generateReportFor(TestOutcome testOutcome)
          Generate an XML report for a given test run.
 

Uses of TestOutcome in net.thucydides.core.statistics
 

Methods in net.thucydides.core.statistics with parameters of type TestOutcome
 void StatisticsListener.testFailed(TestOutcome result, Throwable cause)
           
 void StatisticsListener.testFinished(TestOutcome result)
           
 

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

Methods in net.thucydides.core.statistics.dao with parameters of type TestOutcome
 void TestOutcomeHistoryDAO.storeTestOutcome(TestOutcome testOutcome)
           
 void HibernateTestOutcomeHistoryDAO.storeTestOutcome(TestOutcome testOutcome)
           
 

Method parameters in net.thucydides.core.statistics.dao with type arguments of type TestOutcome
 void TestOutcomeHistoryDAO.storeTestOutcomes(List<TestOutcome> testOutcomes)
           
 void HibernateTestOutcomeHistoryDAO.storeTestOutcomes(List<TestOutcome> testOutcomes)
           
 

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

Methods in net.thucydides.core.statistics.model with parameters of type TestOutcome
static TestRun TestRun.from(TestOutcome result)
           
 

Uses of TestOutcome in net.thucydides.core.statistics.service
 

Methods in net.thucydides.core.statistics.service with parameters of type TestOutcome
 Set<TestTag> TagProvider.getTagsFor(TestOutcome testOutcome)
           
 Set<TestTag> FeatureStoryTagProvider.getTagsFor(TestOutcome testOutcome)
           
 Set<TestTag> AnnotationBasedTagProvider.getTagsFor(TestOutcome testOutcome)
           
 

Uses of TestOutcome in net.thucydides.core.steps
 

Methods in net.thucydides.core.steps that return TestOutcome
protected  TestOutcome BaseStepListener.getCurrentTestOutcome()
           
 

Methods in net.thucydides.core.steps that return types with arguments of type TestOutcome
 List<TestOutcome> StepPublisher.getTestOutcomes()
          A step listener should be able to return a set of test results at the end of the test run.
 List<TestOutcome> BaseStepListener.getTestOutcomes()
           
 

Methods in net.thucydides.core.steps with parameters of type TestOutcome
 void StepListener.testFailed(TestOutcome testOutcome, Throwable cause)
          The test failed, but not while executing a step.
 void ConsoleStepListener.testFailed(TestOutcome testOutcome, Throwable cause)
           
 void ConsoleLoggingListener.testFailed(TestOutcome testOutcome, Throwable cause)
           
 void BaseStepListener.testFailed(TestOutcome testOutcome, Throwable cause)
           
 void StepListener.testFinished(TestOutcome result)
          Called when a test finishes.
 void StepEventBus.testFinished(TestOutcome result)
           
 void ConsoleStepListener.testFinished(TestOutcome result)
           
 void ConsoleLoggingListener.testFinished(TestOutcome result)
           
 void BaseStepListener.testFinished(TestOutcome result)
          A test has finished.
 



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