pekko/akka-docs/src/test/scala/docs/CompileOnlySpec.scala
2019-03-11 16:58:55 +01:00

14 lines
303 B
Scala

/*
* Copyright (C) 2009-2019 Lightbend Inc. <https://www.lightbend.com>
*/
package docs
trait CompileOnlySpec {
/**
* Given a block of code... does NOT execute it.
* Useful when writing code samples in tests, which should only be compiled.
*/
def compileOnlySpec(body: => Unit) = ()
}