--
You received this message because you are subscribed to the Google Groups "Thucydides Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
@Test
public void demonstrate_that_pending_test_is_marked_as_passed() {
Assume.assumeTrue(false);
}
Tests with no steps are no longer considered pending
JUnit Tests with no steps are no longer considered PENDING unless they are marked with the @Pending annotation. This makes it easier to integrate simple tests that don't need to use the step hierarchy.


--
You received this message because you are subscribed to the Google Groups "Thucydides Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi John,
I’m aware of the pending step behavior.
The issue is specific on the filtering-out scenario’s by either:
- Marking the scenario with the Meta: @skip
- Using a filter at command line –Dmetafilter
Scenario: Logging on via Facebook
Meta:
@skip
Given Joe is a Frequent Flyer member
And Joe has registered online via Facebook
When Joe logs on with a Facebook token
Then he should be given access to the site
(observed in 0.9.262)
1. Filtering at story level
When used at the story level, the complete story is not executed and does not show up in the report (as expected)
Authentication
As a user
I want to use my social media credentials
In order to get access to the Frequent Flyer portal
Meta:
@skip
Scenario: Logging on via Facebook
Given Joe is a Frequent Flyer member
And Joe has registered online via Facebook
When Joe logs on with a Facebook token
Then he should be given access to the site
2. Filtering at scenario level
When used at the scenario level, the scenario (gherkin) steps
are not executed, but the scenario title is included in the report as PASSED
but with 0 steps executed.
Scenario: Logging on via Facebook
Meta:
@skip
Given Joe is a Frequent Flyer member
And Joe has registered online via Facebook
When Joe logs on with a Facebook token
Then he should be given access to the site
Scenario: Logging on via GMail
Given Joe is a Frequent Flyer member
And Joe has registered online via GMail
When Joe logs on with a GMail token
Then he should be given access to the site
Rgds,
Jan
Geen
virus gevonden in dit bericht.
Gecontroleerd door AVG - www.avg.com
Versie: 2014.0.4744 / Virusdatabase: 4007/8004 - datum van uitgifte: 08/08/14
Interne Virusdatabase is verouderd.


--
You received this message because you are subscribed to the Google Groups "Thucydides Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.