mirror of
https://github.com/xerial/snappy-java.git
synced 2025-09-20 00:27:43 +02:00
15 lines
413 B
Scala
15 lines
413 B
Scala
package org.xerial.snappy
|
|
|
|
import org.scalatest._
|
|
import wvlet.log.LogFormatter.SourceCodeLogFormatter
|
|
import wvlet.log.{LogSupport, Logger}
|
|
import wvlet.log.io.Timer
|
|
|
|
/**
|
|
*/
|
|
trait SnappySpec extends WordSpec with Matchers with GivenWhenThen with OptionValues with BeforeAndAfter with Timer with LogSupport {
|
|
Logger.setDefaultFormatter(SourceCodeLogFormatter)
|
|
|
|
implicit def toTag(s: String): Tag = Tag(s)
|
|
}
|