Closed GoogleCodeExporter closed 8 years ago
Original comment by stewart@javahelp.co.uk
on 15 Apr 2013 at 1:04
Unfortunately when running in "auto" mode the plugin currently launches
FitNesse via `fitnesse.junit.TestHelper` which forms its execution using
{{{
String getCommand(String pageName, String pageType, String suiteFilter, String excludeSuiteFilter) {
String command = pageName+"?"+pageType+getCommandArgs();
if (suiteFilter!=null)
command = command + "&suiteFilter=" + suiteFilter;
if (excludeSuiteFilter!=null)
command = command + "&excludeSuiteFilter=" + excludeSuiteFilter;
return command;
}
}}}
Implementing `runTestsMatchingAllTags` would require bypassing this class.
It's not out of the question, but a bit of a pain ...
Original comment by stewart@javahelp.co.uk
on 24 Jun 2013 at 4:00
May relate to Issue #32
Original comment by stewart@javahelp.co.uk
on 23 Jun 2014 at 3:45
New URL
http://fitnesse.org/FitNesse.FullReferenceGuide.UserGuide.WritingAcceptanceTests
.TestSuites.TagsAndFilters
Original comment by stewart@javahelp.co.uk
on 29 Jun 2014 at 10:56
Fix committed to /trunk at r407
SNAPSHOT deployed to repo
Original comment by stewart@javahelp.co.uk
on 4 Jul 2014 at 10:46
Original issue reported on code.google.com by
reinierb...@gmail.com
on 15 Apr 2013 at 8:41