Created
September 11, 2013 01:35
-
-
Save nefilim/6518314 to your computer and use it in GitHub Desktop.
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 characters
@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") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment