Home | History | Annotate | Download | only in vogar

Lines Matching refs:outcome

75     public int generateReports(Collection<Outcome> results) {
88 private Map<String, Suite> testsToSuites(Collection<Outcome> outcomes) {
90 for (Outcome outcome : outcomes) {
91 if (outcome.getResult() == Result.UNSUPPORTED) {
95 String suiteName = outcome.getSuiteName();
102 suite.outcomes.add(outcome);
104 Expectation expectation = expectationStore.get(outcome);
105 if (!expectation.matches(outcome)) {
106 if (outcome.getResult() == Result.EXEC_FAILED) {
118 private final List<Outcome> outcomes = new ArrayList<Outcome>();
138 for (Outcome outcome : outcomes) {
139 print(serializer, outcome);
145 private void print(KXmlSerializer serializer, Outcome outcome) throws IOException {
147 serializer.attribute(ns, XmlReportConstants.ATTR_NAME, outcome.getTestName());
148 serializer.attribute(ns, XmlReportConstants.ATTR_CLASSNAME, outcome.getSuiteName());
151 Expectation expectation = expectationStore.get(outcome);
152 if (!expectation.matches(outcome)) {
154 switch (outcome.getResult()) {
166 serializer.attribute(ns, XmlReportConstants.ATTR_TYPE, outcome.getResult().toString());
167 String text = outcome.getOutput();