seratch / scalatest

Automatically exported from code.google.com/p/scalatest
Apache License 2.0
0 stars 0 forks source link

with OneInstancePerTest, FunSuite.ignore not ignored #6

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
@RunWith(classOf[JUnitRunner]) 
class SomeSuite extends FunSuite with OneInstancePerTest { 
  ignore("Will be ignored") { 
    ... 
  } 
  test("other test") {...} 
  ... 
} 

No mater it's mvn test, mvn scala:run or run(new SomeSuite), this 
ignore test will be run.

Original issue reported on code.google.com by iron9li...@gmail.com on 7 Sep 2011 at 6:36

GoogleCodeExporter commented 8 years ago
Fixed in trunk. Will be released as part of ScalaTest 2.0 and possible 
backported depending on user input.

Original comment by billvenn...@gmail.com on 10 Sep 2011 at 6:50