mbateman / fitnesse-launcher-maven-plugin

Automatically exported from code.google.com/p/fitnesse-launcher-maven-plugin
0 stars 0 forks source link

I want to be able to use runTestsMatchingAllTags parameter from fitnesse #12

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Would be nice to be able to use all features of tags selection that is 
supported bij Fitnesse. Currently I don't see the option to use 
runTestsMatchingAllTags parameter.

See: http://fitnesse.org/FitNesse.UserGuide.TestSuites.TagsAndFilters

This feature is introduced since 20 -  12 - 2012:
http://fitnesse.996250.n3.nabble.com/ANNOUNCE-FitNesse-20121220-td2442.html

Original issue reported on code.google.com by reinierb...@gmail.com on 15 Apr 2013 at 8:41

GoogleCodeExporter commented 8 years ago

Original comment by stewart@javahelp.co.uk on 15 Apr 2013 at 1:04

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
May relate to Issue #32

Original comment by stewart@javahelp.co.uk on 23 Jun 2014 at 3:45

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
Fix committed to /trunk at r407
SNAPSHOT deployed to repo

Original comment by stewart@javahelp.co.uk on 4 Jul 2014 at 10:46