Skip to content

Instantly share code, notes, and snippets.

@nefilim
Created September 11, 2013 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nefilim/6518314 to your computer and use it in GitHub Desktop.
Save nefilim/6518314 to your computer and use it in GitHub Desktop.
@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