Created
September 11, 2013 01:35
-
-
Save nefilim/6518314 to your computer and use it in GitHub Desktop.
Revisions
-
nefilim created this gist
Sep 11, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ @DoNotDiscover class Test1 extends FeatureSpecLike with Logging { feature("main feature") { logger.info("starting main feature") scenario("do stuff") { logger.info("doing some stuff here yo") } } } class SuitesRunner extends Suites(new Test1) with Logging with BeforeAndAfterAll { override protected def beforeAll() { logger.info("ok doing some before all stuff") } }