Taro L. Saito 377d3577ca Reformat
2020-06-25 19:42:39 -07:00

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)
}