Author: lfryc(a)redhat.com
Date: 2010-09-02 11:12:44 -0400 (Thu, 02 Sep 2010)
New Revision: 19098
Modified:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/AbstractMetamerTest.java
Log:
removed 'Optimization for skipping all subsequent test method invocations, if the
method failed for plan template.' (it caused skipping too much matrix configured
methods)
Modified:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/AbstractMetamerTest.java
===================================================================
---
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/AbstractMetamerTest.java 2010-09-02
14:37:25 UTC (rev 19097)
+++
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/AbstractMetamerTest.java 2010-09-02
15:12:44 UTC (rev 19098)
@@ -83,18 +83,6 @@
}
/**
- * Optimization for skipping all subsequent test method invocations, if the method
failed for plan template.
- */
- @AfterMethod(alwaysRun = true)
- public void skipAllAfterPlainTemplateFailure(ITestResult result) {
- if (template.size() == 1 && template.get(0) == Template.PLAIN) {
- if (result.getStatus() == ITestResult.FAILURE) {
- result.getMethod().setSkipFailedInvocations(true);
- }
- }
- }
-
- /**
* Invalidates session by clicking on a button on tested page.
*/
@AfterMethod(alwaysRun = true)