Uses of Class
net.thucydides.core.reports.TestOutcomes

Packages that use TestOutcomes
net.thucydides.core.model The Thucydides domain model, which represents acceptance test runs. 
net.thucydides.core.model.formatters   
net.thucydides.core.releases   
net.thucydides.core.reports Thucydides generates reports in HTML and XML by default. 
net.thucydides.core.reports.csv   
net.thucydides.core.reports.history   
net.thucydides.core.reports.html XML Report generation. 
net.thucydides.core.reports.json   
net.thucydides.core.reports.xml XML Report generation. 
net.thucydides.core.requirements.reports   
 

Uses of TestOutcomes in net.thucydides.core.model
 

Constructors in net.thucydides.core.model with parameters of type TestOutcomes
OutcomeCounter(TestType testType, TestOutcomes outcomes)
           
 

Uses of TestOutcomes in net.thucydides.core.model.formatters
 

Constructors in net.thucydides.core.model.formatters with parameters of type TestOutcomes
TestCoverageFormatter(TestOutcomes outcomes)
           
 

Uses of TestOutcomes in net.thucydides.core.releases
 

Methods in net.thucydides.core.releases with parameters of type TestOutcomes
 List<Release> ReleaseManager.getFlattenedReleasesFrom(TestOutcomes testOutcomes)
           
 String ReleaseManager.getJSONReleasesFrom(TestOutcomes testOutcomes)
           
 List<Release> ReleaseManager.getReleasesFrom(TestOutcomes testOutcomes)
           
 

Uses of TestOutcomes in net.thucydides.core.reports
 

Methods in net.thucydides.core.reports that return TestOutcomes
 TestOutcomes TestOutcomes.forRequirement(Requirement requirement)
           
 TestOutcomes UserStoryTestReporter.generateReportsForTestResultsFrom(File sourceDirectory)
          Generates a set of user story reports from a given directory.
 TestOutcomes TestOutcomes.getErrorTests()
           
 TestOutcomes TestOutcomes.getFailingTests()
          Find the failing test outcomes in this set
 TestOutcomes TestOutcomes.getPassingTests()
          Find the successful test outcomes in this set
 TestOutcomes TestOutcomes.getPendingTests()
          Find the pending or ignored test outcomes in this set
 TestOutcomes TestOutcomes.getRootOutcomes()
           
static TestOutcomes TestOutcomes.of(List<? extends TestOutcome> outcomes)
           
 TestOutcomes TestOutcomes.ofType(TestType testType)
           
static TestOutcomes TestOutcomeLoader.testOutcomesIn(File reportsDirectory)
           
 TestOutcomes TestOutcomes.withHistory()
          Return a copy of the current test outcomes, with test run history and statistics.
 TestOutcomes TestOutcomes.withLabel(String label)
           
static TestOutcomes TestOutcomes.withNoResults()
           
 TestOutcomes TestOutcomes.withTag(String tagName)
          Find the test outcomes with a given tag name
 TestOutcomes TestOutcomes.withTag(TestTag tag)
           
 TestOutcomes TestOutcomes.withTags(List<TestTag> tags)
           
 TestOutcomes TestOutcomes.withTagType(String tagType)
          Find the test outcomes with a given tag type
 

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

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

Uses of TestOutcomes in net.thucydides.core.reports.csv
 

Methods in net.thucydides.core.reports.csv with parameters of type TestOutcomes
 File CSVReporter.generateReportFor(TestOutcomes testOutcomes, String reportName)
           
 

Uses of TestOutcomes in net.thucydides.core.reports.history
 

Methods in net.thucydides.core.reports.history with parameters of type TestOutcomes
 void TestHistory.updateData(TestOutcomes testOutcomes)
           
 

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

Methods in net.thucydides.core.reports.html that return TestOutcomes
 TestOutcomes HtmlAggregateStoryReporter.generateReportsForTestResultsFrom(File sourceDirectory)
           
 

Methods in net.thucydides.core.reports.html with parameters of type TestOutcomes
 File HtmlRequirementsReporter.generateReportFor(RequirementsOutcomes requirementsOutcomes, TestOutcomes testOutcomes, String filename)
           
 File HtmlProgressReporter.generateReportFor(RequirementsOutcomes requirementsOutcomes, TestOutcomes testOutcomes, String filename)
           
 File HtmlAcceptanceTestReporter.generateReportFor(TestOutcome testOutcome, TestOutcomes allTestOutcomes)
          Generate an HTML report for a given test run.
 void HtmlAggregateStoryReporter.generateReportsForTestResultsIn(TestOutcomes testOutcomes)
           
protected  String HtmlReporter.timestampFrom(TestOutcomes rootOutcomes)
           
 

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

Methods in net.thucydides.core.reports.json with parameters of type TestOutcomes
 File JSONTestOutcomeReporter.generateReportFor(TestOutcome testOutcome, TestOutcomes allTestOutcomes)
           
 

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

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

Uses of TestOutcomes in net.thucydides.core.requirements.reports
 

Methods in net.thucydides.core.requirements.reports that return TestOutcomes
 TestOutcomes RequirementsOutcomes.getTestOutcomes()
           
 TestOutcomes RequirementOutcome.getTestOutcomes()
           
 TestOutcomes RequirementOutcome.getTests()
           
 

Methods in net.thucydides.core.requirements.reports with parameters of type TestOutcomes
 RequirementsOutcomes RequirmentsOutcomeFactory.buildRequirementsOutcomesFrom(Requirement parentRequirement, TestOutcomes testOutcomes)
           
 RequirementsOutcomes RequirmentsOutcomeFactory.buildRequirementsOutcomesFrom(TestOutcomes testOutcomes)
           
 RequirementOutcome RequirementOutcome.withTestOutcomes(TestOutcomes testOutcomes)
           
 

Constructors in net.thucydides.core.requirements.reports with parameters of type TestOutcomes
RequirementOutcome(Requirement requirement, TestOutcomes testOutcomes, int requirementsWithoutTests, int estimatedUnimplementedTests, IssueTracking issueTracking)
           
RequirementOutcome(Requirement requirement, TestOutcomes testOutcomes, IssueTracking issueTracking)
           
RequirementsOutcomes(List<Requirement> requirements, TestOutcomes testOutcomes, IssueTracking issueTracking, EnvironmentVariables environmentVariables, List<RequirementsTagProvider> requirementsTagProviders)
           
RequirementsOutcomes(Requirement parentRequirement, List<Requirement> requirements, TestOutcomes testOutcomes, IssueTracking issueTracking, EnvironmentVariables environmentVariables, List<RequirementsTagProvider> requirementsTagProviders)
           
RequirementsProportionCounter(TestType testType, TestOutcomes testOutcomes, int estimatedTotalTests)
           
 



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